Skip to content

Commit

Permalink
Tagging release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jools committed May 2, 2016
1 parent 6b094b9 commit 1e61e19
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/DatabaseDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ abstract class DatabaseDriver implements DatabaseInterface, Log\LoggerAwareInter
* The type of the database server family supported by this driver.
*
* @var string
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
public $serverType;

Expand Down Expand Up @@ -473,7 +473,7 @@ public function __call($method, $args)
*
* @return mixed A value if the property name is valid, null otherwise.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
* @deprecated 2.0 This is a B/C proxy since $this->name was previously public
*/
public function __get($name)
Expand Down Expand Up @@ -696,7 +696,7 @@ public function getMinimum()
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
public function getName()
{
Expand All @@ -718,7 +718,7 @@ public function getName()
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
public function getServerType()
{
Expand Down
4 changes: 2 additions & 2 deletions src/Mysql/MysqlDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class MysqlDriver extends PdoDriver
* True if the database engine supports UTF-8 Multibyte (utf8mb4) character encoding.
*
* @var boolean
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
protected $utf8mb4 = false;

Expand Down Expand Up @@ -155,7 +155,7 @@ public function connect()
*
* @return string The converted query
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
public function convertUtf8mb4QueryToUtf8($query)
{
Expand Down
6 changes: 3 additions & 3 deletions src/Mysqli/MysqliDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class MysqliDriver extends DatabaseDriver
* True if the database engine supports UTF-8 Multibyte (utf8mb4) character encoding.
*
* @var boolean
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
protected $utf8mb4 = false;

Expand Down Expand Up @@ -220,7 +220,7 @@ public function connect()
*
* @return string The converted query
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
public function convertUtf8mb4QueryToUtf8($query)
{
Expand Down Expand Up @@ -879,7 +879,7 @@ public function unlockTables()
*
* @return boolean
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
private function serverClaimsUtf8mb4Support()
{
Expand Down
2 changes: 1 addition & 1 deletion src/Mysqli/MysqliImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function check()
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
* @throws \RuntimeException
*/
protected function xmlToCreate(\SimpleXMLElement $table)
Expand Down

0 comments on commit 1e61e19

Please sign in to comment.