Skip to content

Commit

Permalink
Tagging release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jools committed Jan 29, 2017
1 parent c0fb439 commit 49d1306
Show file tree
Hide file tree
Showing 18 changed files with 88 additions and 88 deletions.
4 changes: 2 additions & 2 deletions Tests/QueryPostgresqlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class QueryPostgresqlTest extends \PHPUnit_Framework_TestCase
* The instance of the object to test.
*
* @var PostgresqlQuery
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
private $instance;

Expand Down Expand Up @@ -121,7 +121,7 @@ public function mockQuoteName($text)
*
* @return PostgresqlQuery
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function mockGetQuery($new = false)
{
Expand Down
12 changes: 6 additions & 6 deletions src/DatabaseQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ abstract class DatabaseQuery
* The unionAll element.
*
* @var Query\QueryElement
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
protected $unionAll = null;

Expand Down Expand Up @@ -670,7 +670,7 @@ public function currentTimestamp()
* @return string The string with the appropriate sql for addition of dates
*
* @see http://dev.mysql.com/doc/en/date-and-time-functions.html
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function dateAdd($date, $interval, $datePart)
{
Expand Down Expand Up @@ -811,7 +811,7 @@ public function exec($columns)
*
* @return string A representation of the MySQL find_in_set() function for the driver.
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function findInSet($value, $set)
{
Expand Down Expand Up @@ -1274,7 +1274,7 @@ public function quoteName($name, $as = null)
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function rand()
{
Expand All @@ -1291,7 +1291,7 @@ public function rand()
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function regexp($value)
{
Expand Down Expand Up @@ -1633,7 +1633,7 @@ public function union($query, $distinct = false, $glue = '')
* @return DatabaseQuery Returns this object to allow chaining.
*
* @see union
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function unionAll($query, $distinct = false, $glue = '')
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/ConnectionFailureException.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* Exception class defining an error connecting to the database platform
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
class ConnectionFailureException extends \RuntimeException
{
Expand Down
8 changes: 4 additions & 4 deletions src/Exception/ExecutionFailureException.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
/**
* Exception class defining an error executing a statement
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
class ExecutionFailureException extends \RuntimeException
{
/**
* The SQL statement that was executed.
*
* @var string
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
private $query;

Expand All @@ -31,7 +31,7 @@ class ExecutionFailureException extends \RuntimeException
* @param integer $code The Exception code. [optional]
* @param Exception $previous The previous exception used for the exception chaining. [optional]
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function __construct($query, $message = '', $code = 0, \Exception $previous = null)
{
Expand All @@ -45,7 +45,7 @@ public function __construct($query, $message = '', $code = 0, \Exception $previo
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function getQuery()
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/UnsupportedAdapterException.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* Exception class defining an unsupported database object
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
class UnsupportedAdapterException extends \RuntimeException
{
Expand Down
10 changes: 5 additions & 5 deletions src/Mysql/MysqlQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class MysqlQuery extends DatabaseQuery implements LimitableInterface, Preparable
* Holds key / value pair of bound objects.
*
* @var mixed
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
protected $bounded = array();

Expand All @@ -57,7 +57,7 @@ class MysqlQuery extends DatabaseQuery implements LimitableInterface, Preparable
*
* @return MysqlQuery
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function bind($key = null, &$value = null, $dataType = \PDO::PARAM_STR, $length = 0, $driverOptions = array())
{
Expand Down Expand Up @@ -101,7 +101,7 @@ public function bind($key = null, &$value = null, $dataType = \PDO::PARAM_STR, $
*
* @return mixed
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function &getBounded($key = null)
{
Expand All @@ -123,7 +123,7 @@ public function &getBounded($key = null)
*
* @return MysqlQuery Returns this object to allow chaining.
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function clear($clause = null)
{
Expand Down Expand Up @@ -201,7 +201,7 @@ public function concatenate($values, $separator = null)
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function rand()
{
Expand Down
8 changes: 4 additions & 4 deletions src/Mysqli/MysqliDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ class MysqliDriver extends DatabaseDriver
* The prepared statement.
*
* @var \mysqli_stmt
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
protected $prepared;

/**
* Contains the current query execution status
*
* @var array
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
protected $executed = false;

Expand Down Expand Up @@ -743,7 +743,7 @@ public function select($database)
*
* @return MysqliDriver This object to support method chaining.
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function setQuery($query, $offset = null, $limit = null)
{
Expand Down Expand Up @@ -906,7 +906,7 @@ public function transactionStart($asSavepoint = false)
*
* @return boolean
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
protected function executeUnpreparedQuery($sql)
{
Expand Down
14 changes: 7 additions & 7 deletions src/Mysqli/MysqliQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class MysqliQuery extends DatabaseQuery implements LimitableInterface, Preparabl
* Holds key / value pair of bound objects.
*
* @var mixed
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
protected $bounded = array();

Expand All @@ -57,7 +57,7 @@ class MysqliQuery extends DatabaseQuery implements LimitableInterface, Preparabl
*
* @return MysqliQuery
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function bind($key = null, &$value = null, $dataType = 's', $length = 0, $driverOptions = array())
{
Expand Down Expand Up @@ -98,7 +98,7 @@ public function bind($key = null, &$value = null, $dataType = 's', $length = 0,
*
* @return mixed
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function &getBounded($key = null)
{
Expand All @@ -120,7 +120,7 @@ public function &getBounded($key = null)
*
* @return MysqliQuery Returns this object to allow chaining.
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function clear($clause = null)
{
Expand Down Expand Up @@ -222,7 +222,7 @@ public function setLimit($limit = 0, $offset = 0)
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function regexp($value)
{
Expand All @@ -237,7 +237,7 @@ public function regexp($value)
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function rand()
{
Expand All @@ -257,7 +257,7 @@ public function rand()
*
* @return string A representation of the MySQL find_in_set() function for the driver.
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function findInSet($value, $set)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Pdo/PdoDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ public function getOption($key)
*
* @return string The database connector version.
*
* @since __DEPLOY_VERSION__
* @since 1.5.0
*/
public function getVersion()
{
Expand Down
Loading

0 comments on commit 49d1306

Please sign in to comment.