From 49d13066870f7235216fb94ffa86bf64070e04b8 Mon Sep 17 00:00:00 2001 From: jools Date: Sun, 29 Jan 2017 17:34:44 -0600 Subject: [PATCH] Tagging release 1.5.0 --- Tests/QueryPostgresqlTest.php | 4 +- src/DatabaseQuery.php | 12 ++-- src/Exception/ConnectionFailureException.php | 2 +- src/Exception/ExecutionFailureException.php | 8 +-- src/Exception/UnsupportedAdapterException.php | 2 +- src/Mysql/MysqlQuery.php | 10 ++-- src/Mysqli/MysqliDriver.php | 8 +-- src/Mysqli/MysqliQuery.php | 14 ++--- src/Pdo/PdoDriver.php | 2 +- src/Pgsql/PgsqlDriver.php | 56 +++++++++---------- src/Pgsql/PgsqlExporter.php | 4 +- src/Pgsql/PgsqlImporter.php | 4 +- src/Pgsql/PgsqlIterator.php | 2 +- src/Pgsql/PgsqlQuery.php | 8 +-- src/Postgresql/PostgresqlDriver.php | 10 ++-- src/Postgresql/PostgresqlQuery.php | 14 ++--- src/Sqlsrv/SqlsrvDriver.php | 2 +- src/Sqlsrv/SqlsrvQuery.php | 14 ++--- 18 files changed, 88 insertions(+), 88 deletions(-) diff --git a/Tests/QueryPostgresqlTest.php b/Tests/QueryPostgresqlTest.php index be7d47841..2197ed304 100644 --- a/Tests/QueryPostgresqlTest.php +++ b/Tests/QueryPostgresqlTest.php @@ -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; @@ -121,7 +121,7 @@ public function mockQuoteName($text) * * @return PostgresqlQuery * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function mockGetQuery($new = false) { diff --git a/src/DatabaseQuery.php b/src/DatabaseQuery.php index 7795a9dbc..a68d7a86c 100644 --- a/src/DatabaseQuery.php +++ b/src/DatabaseQuery.php @@ -191,7 +191,7 @@ abstract class DatabaseQuery * The unionAll element. * * @var Query\QueryElement - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $unionAll = null; @@ -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) { @@ -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) { @@ -1274,7 +1274,7 @@ public function quoteName($name, $as = null) * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function rand() { @@ -1291,7 +1291,7 @@ public function rand() * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function regexp($value) { @@ -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 = '') { diff --git a/src/Exception/ConnectionFailureException.php b/src/Exception/ConnectionFailureException.php index d5f108731..e624def8e 100644 --- a/src/Exception/ConnectionFailureException.php +++ b/src/Exception/ConnectionFailureException.php @@ -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 { diff --git a/src/Exception/ExecutionFailureException.php b/src/Exception/ExecutionFailureException.php index 34bb85474..a51dafaae 100644 --- a/src/Exception/ExecutionFailureException.php +++ b/src/Exception/ExecutionFailureException.php @@ -11,7 +11,7 @@ /** * Exception class defining an error executing a statement * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ class ExecutionFailureException extends \RuntimeException { @@ -19,7 +19,7 @@ class ExecutionFailureException extends \RuntimeException * The SQL statement that was executed. * * @var string - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ private $query; @@ -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) { @@ -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() { diff --git a/src/Exception/UnsupportedAdapterException.php b/src/Exception/UnsupportedAdapterException.php index 148881b37..829c1a6c2 100644 --- a/src/Exception/UnsupportedAdapterException.php +++ b/src/Exception/UnsupportedAdapterException.php @@ -11,7 +11,7 @@ /** * Exception class defining an unsupported database object * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ class UnsupportedAdapterException extends \RuntimeException { diff --git a/src/Mysql/MysqlQuery.php b/src/Mysql/MysqlQuery.php index 7f7c82a74..72c556fa5 100644 --- a/src/Mysql/MysqlQuery.php +++ b/src/Mysql/MysqlQuery.php @@ -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(); @@ -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()) { @@ -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) { @@ -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) { @@ -201,7 +201,7 @@ public function concatenate($values, $separator = null) * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function rand() { diff --git a/src/Mysqli/MysqliDriver.php b/src/Mysqli/MysqliDriver.php index f5bf69bb4..c0d2cdb48 100644 --- a/src/Mysqli/MysqliDriver.php +++ b/src/Mysqli/MysqliDriver.php @@ -73,7 +73,7 @@ class MysqliDriver extends DatabaseDriver * The prepared statement. * * @var \mysqli_stmt - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $prepared; @@ -81,7 +81,7 @@ class MysqliDriver extends DatabaseDriver * Contains the current query execution status * * @var array - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $executed = false; @@ -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) { @@ -906,7 +906,7 @@ public function transactionStart($asSavepoint = false) * * @return boolean * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected function executeUnpreparedQuery($sql) { diff --git a/src/Mysqli/MysqliQuery.php b/src/Mysqli/MysqliQuery.php index 88e4f3f44..353381b11 100644 --- a/src/Mysqli/MysqliQuery.php +++ b/src/Mysqli/MysqliQuery.php @@ -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(); @@ -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()) { @@ -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) { @@ -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) { @@ -222,7 +222,7 @@ public function setLimit($limit = 0, $offset = 0) * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function regexp($value) { @@ -237,7 +237,7 @@ public function regexp($value) * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function rand() { @@ -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) { diff --git a/src/Pdo/PdoDriver.php b/src/Pdo/PdoDriver.php index 5c32412bf..65fd07027 100644 --- a/src/Pdo/PdoDriver.php +++ b/src/Pdo/PdoDriver.php @@ -488,7 +488,7 @@ public function getOption($key) * * @return string The database connector version. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function getVersion() { diff --git a/src/Pgsql/PgsqlDriver.php b/src/Pgsql/PgsqlDriver.php index f35a1fd7a..9dab489ad 100644 --- a/src/Pgsql/PgsqlDriver.php +++ b/src/Pgsql/PgsqlDriver.php @@ -14,7 +14,7 @@ /** * PostgreSQL PDO Database Driver * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ class PgsqlDriver extends PdoDriver { @@ -22,7 +22,7 @@ class PgsqlDriver extends PdoDriver * The database driver name * * @var string - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public $name = 'pgsql'; @@ -33,7 +33,7 @@ class PgsqlDriver extends PdoDriver * used for the opening quote and the second for the closing quote. * * @var string - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $nameQuote = '"'; @@ -42,7 +42,7 @@ class PgsqlDriver extends PdoDriver * defined in child classes to hold the appropriate value for the engine. * * @var string - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $nullDate = '1970-01-01 00:00:00'; @@ -50,7 +50,7 @@ class PgsqlDriver extends PdoDriver * The minimum supported database version. * * @var string - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected static $dbMinimum = '8.3.18'; @@ -58,7 +58,7 @@ class PgsqlDriver extends PdoDriver * Operator used for concatenation * * @var string - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $concat_operator = '||'; @@ -67,7 +67,7 @@ class PgsqlDriver extends PdoDriver * * @param array $options List of options used to configure the connection * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function __construct($options) { @@ -87,7 +87,7 @@ public function __construct($options) * * @return void Returns void if the database connected successfully. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function connect() @@ -110,7 +110,7 @@ public function connect() * * @return boolean true * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function dropTable($tableName, $ifExists = true) @@ -125,7 +125,7 @@ public function dropTable($tableName, $ifExists = true) * * @return mixed The collation in use by the database or boolean false if not supported. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function getCollation() @@ -145,7 +145,7 @@ public function getCollation() * * @return string An empty string because this function is not supported by PostgreSQL. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function getTableCreate($tables) @@ -161,7 +161,7 @@ public function getTableCreate($tables) * * @return array An array of fields for the database table. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function getTableColumns($table, $typeOnly = true) @@ -257,7 +257,7 @@ public function getTableColumns($table, $typeOnly = true) * * @return array An array of the column specification for the table. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function getTableKeys($table) @@ -294,7 +294,7 @@ public function getTableKeys($table) * * @return array An array of all the tables in the database. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function getTableList() @@ -318,7 +318,7 @@ public function getTableList() * * @return array An array of sequences specification for the table. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function getTableSequences($table) @@ -366,7 +366,7 @@ public function getTableSequences($table) * * @return PgsqlDriver Returns this object to support chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function lockTable($tableName) @@ -387,7 +387,7 @@ public function lockTable($tableName) * * @return PgsqlDriver Returns this object to support chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function renameTable($oldTable, $newTable, $backup = null, $prefix = null) @@ -465,7 +465,7 @@ public function renameTable($oldTable, $newTable, $backup = null, $prefix = null * * @return string The quoted string. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function sqlValue($columns, $field_name, $field_value) { @@ -609,7 +609,7 @@ public function transactionStart($asSavepoint = false) * * @return boolean True on success. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function insertObject($table, &$object, $key = null) @@ -688,7 +688,7 @@ public function insertObject($table, &$object, $key = null) * * @return boolean True on success, false otherwise. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public static function isSupported() { @@ -700,7 +700,7 @@ public static function isSupported() * * @return array The database's table list. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function showTables() { @@ -723,7 +723,7 @@ public function showTables() * * @return integer The position of $substring in $string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function getStringPositionSql($substring, $string) { @@ -738,7 +738,7 @@ public function getStringPositionSql($substring, $string) * * @return float The random generated number * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function getRandom() { @@ -755,7 +755,7 @@ public function getRandom() * * @return string The query that alter the database query string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function getAlterDbCharacterSet($dbName) { @@ -770,7 +770,7 @@ public function getAlterDbCharacterSet($dbName) * * @return string The query that creates database, owned by $options['user'] * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function getCreateDbQuery($options, $utf) { @@ -792,7 +792,7 @@ public function getCreateDbQuery($options, $utf) * * @return string The processed SQL statement. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function replacePrefix($sql, $prefix = '#__') { @@ -864,7 +864,7 @@ public function replacePrefix($sql, $prefix = '#__') * * @return PgsqlDriver Returns this object to support chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function unlockTables() @@ -884,7 +884,7 @@ public function unlockTables() * * @return boolean True on success. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \RuntimeException */ public function updateObject($table, &$object, $key, $nulls = false) diff --git a/src/Pgsql/PgsqlExporter.php b/src/Pgsql/PgsqlExporter.php index ba2bff525..5c7be736d 100644 --- a/src/Pgsql/PgsqlExporter.php +++ b/src/Pgsql/PgsqlExporter.php @@ -13,7 +13,7 @@ /** * PDO PostgreSQL Database Exporter. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ class PgsqlExporter extends PostgresqlExporter { @@ -22,7 +22,7 @@ class PgsqlExporter extends PostgresqlExporter * * @return PgsqlExporter Method supports chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \Exception if an error is encountered. */ public function check() diff --git a/src/Pgsql/PgsqlImporter.php b/src/Pgsql/PgsqlImporter.php index 2d8c52bc4..ada5ca361 100644 --- a/src/Pgsql/PgsqlImporter.php +++ b/src/Pgsql/PgsqlImporter.php @@ -13,7 +13,7 @@ /** * PDO PostgreSQL Database Importer. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ class PgsqlImporter extends PostgresqlImporter { @@ -22,7 +22,7 @@ class PgsqlImporter extends PostgresqlImporter * * @return PgsqlImporter Method supports chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @throws \Exception if an error is encountered. */ public function check() diff --git a/src/Pgsql/PgsqlIterator.php b/src/Pgsql/PgsqlIterator.php index 50814ee53..caa25da4c 100644 --- a/src/Pgsql/PgsqlIterator.php +++ b/src/Pgsql/PgsqlIterator.php @@ -13,7 +13,7 @@ /** * PDO PostgreSQL Database Iterator. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ class PgsqlIterator extends PdoIterator { diff --git a/src/Pgsql/PgsqlQuery.php b/src/Pgsql/PgsqlQuery.php index 84232fb5b..467277d28 100644 --- a/src/Pgsql/PgsqlQuery.php +++ b/src/Pgsql/PgsqlQuery.php @@ -22,7 +22,7 @@ class PgsqlQuery extends PostgresqlQuery implements PreparableInterface * Holds key / value pair of bound objects. * * @var mixed - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $bounded = array(); @@ -40,7 +40,7 @@ class PgsqlQuery extends PostgresqlQuery implements PreparableInterface * * @return PgsqlQuery * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function bind($key = null, &$value = null, $dataType = \PDO::PARAM_STR, $length = 0, $driverOptions = array()) { @@ -84,7 +84,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) { @@ -106,7 +106,7 @@ public function &getBounded($key = null) * * @return PgsqlQuery Returns this object to allow chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function clear($clause = null) { diff --git a/src/Postgresql/PostgresqlDriver.php b/src/Postgresql/PostgresqlDriver.php index d184927e9..06f64c073 100644 --- a/src/Postgresql/PostgresqlDriver.php +++ b/src/Postgresql/PostgresqlDriver.php @@ -56,7 +56,7 @@ class PostgresqlDriver extends DatabaseDriver * The prepared statement. * * @var resource - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $prepared; @@ -64,7 +64,7 @@ class PostgresqlDriver extends DatabaseDriver * Contains the current query execution status * * @var array - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $executed = false; @@ -72,7 +72,7 @@ class PostgresqlDriver extends DatabaseDriver * Contains the name of the prepared query * * @var string - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $queryName = 'query'; @@ -336,7 +336,7 @@ public function getCollation() * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function getConnectionCollation() { @@ -936,7 +936,7 @@ public function select($database) * * @return PostgresqlDriver This object to support method chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function setQuery($query, $offset = null, $limit = null) { diff --git a/src/Postgresql/PostgresqlQuery.php b/src/Postgresql/PostgresqlQuery.php index 388b6fdba..801abe5a2 100644 --- a/src/Postgresql/PostgresqlQuery.php +++ b/src/Postgresql/PostgresqlQuery.php @@ -72,7 +72,7 @@ class PostgresqlQuery extends DatabaseQuery implements LimitableInterface, Prepa * Holds key / value pair of bound objects. * * @var mixed - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $bounded = array(); @@ -90,7 +90,7 @@ class PostgresqlQuery extends DatabaseQuery implements LimitableInterface, Prepa * * @return PostgresqlQuery * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function bind($key = null, &$value = null, $dataType = '', $length = 0, $driverOptions = array()) { @@ -127,7 +127,7 @@ public function bind($key = null, &$value = null, $dataType = '', $length = 0, $ * * @return mixed * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function &getBounded($key = null) { @@ -710,7 +710,7 @@ public function processLimit($query, $limit, $offset = 0) * * @return string The string with the appropriate sql for addition of dates * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 * @link http://www.postgresql.org/docs/9.0/static/functions-datetime.html. */ public function dateAdd($date, $interval, $datePart) @@ -735,7 +735,7 @@ public function dateAdd($date, $interval, $datePart) * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function regexp($value) { @@ -750,7 +750,7 @@ public function regexp($value) * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function rand() { @@ -770,7 +770,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) { diff --git a/src/Sqlsrv/SqlsrvDriver.php b/src/Sqlsrv/SqlsrvDriver.php index 568aefdb5..5d76f2fb3 100644 --- a/src/Sqlsrv/SqlsrvDriver.php +++ b/src/Sqlsrv/SqlsrvDriver.php @@ -830,7 +830,7 @@ public function select($database) * * @return SqlsrvDriver This object to support method chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function setQuery($query, $offset = null, $limit = null) { diff --git a/src/Sqlsrv/SqlsrvQuery.php b/src/Sqlsrv/SqlsrvQuery.php index 80f499833..8307aeaf3 100644 --- a/src/Sqlsrv/SqlsrvQuery.php +++ b/src/Sqlsrv/SqlsrvQuery.php @@ -44,7 +44,7 @@ class SqlsrvQuery extends DatabaseQuery implements PreparableInterface * Holds key / value pair of bound objects. * * @var mixed - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ protected $bounded = array(); @@ -118,7 +118,7 @@ public function __toString() * * @return SqlsrvQuery * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function bind($key = null, &$value = null, $dataType = 's', $length = 0, $driverOptions = array()) { @@ -158,7 +158,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) { @@ -180,7 +180,7 @@ public function &getBounded($key = null) * * @return SqlsrvQuery Returns this object to allow chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function clear($clause = null) { @@ -284,7 +284,7 @@ public function length($value) * * @return SqlsrvQuery Returns this object to allow chaining. * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function group($columns) { @@ -378,7 +378,7 @@ public function group($columns) * * @return string * - * @since __DEPLOY_VERSION__ + * @since 1.5.0 */ public function rand() { @@ -398,7 +398,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) {