Skip to content

Commit ec6f4a2

Browse files
committed
Change deprecation tags to match new project standard
1 parent 16a5285 commit ec6f4a2

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Tests/DriverPgsqlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ public function testSetUtf()
861861
* @return void
862862
*
863863
* @since 1.0
864-
* @deprecated 2.0
864+
* @deprecated
865865
*/
866866
public function testTest()
867867
{

Tests/DriverPostgresqlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ public function testSetUtf()
898898
* @return void
899899
*
900900
* @since 1.0
901-
* @deprecated 2.0
901+
* @deprecated
902902
*/
903903
public function testTest()
904904
{

src/DatabaseDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ public function __call($method, $args)
474474
* @return mixed A value if the property name is valid, null otherwise.
475475
*
476476
* @since 1.4.0
477-
* @deprecated 2.0 This is a B/C proxy since $this->name was previously public
477+
* @deprecated 1.4.0 This is a B/C proxy since $this->name was previously public
478478
*/
479479
public function __get($name)
480480
{

src/DatabaseFactory.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class DatabaseFactory
2020
*
2121
* @var DatabaseFactory
2222
* @since 1.0
23-
* @deprecated 2.0 Instantiate a new factory object as needed
23+
* @deprecated 1.4.0 Instantiate a new factory object as needed
2424
*/
2525
private static $instance = null;
2626

@@ -139,7 +139,7 @@ public function getImporter($name, DatabaseDriver $db = null)
139139
* @return DatabaseFactory
140140
*
141141
* @since 1.0
142-
* @deprecated 2.0 Instantiate a new factory object as needed
142+
* @deprecated 1.4.0 Instantiate a new factory object as needed
143143
*/
144144
public static function getInstance()
145145
{
@@ -185,7 +185,7 @@ public function getQuery($name, DatabaseDriver $db = null)
185185
* @return void
186186
*
187187
* @since 1.0
188-
* @deprecated 2.0 Instantiate a new factory object as needed
188+
* @deprecated 1.4.0 Instantiate a new factory object as needed
189189
*/
190190
public static function setInstance(DatabaseFactory $instance = null)
191191
{

src/Postgresql/PostgresqlDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public function escape($text, $extra = false)
253253
* @return boolean True on success, false otherwise.
254254
*
255255
* @since 1.0
256-
* @deprecated 2.0 Use isSupported() instead
256+
* @deprecated 1.1.0 Use isSupported() instead
257257
*/
258258
public static function test()
259259
{

src/Postgresql/PostgresqlImporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ protected function getDropPrimaryKeySql($table, $name)
474474
*
475475
* @return array The lookup array. array({key name} => array(object, ...))
476476
*
477-
* @since 1.0
477+
* @since 1.2.0
478478
* @deprecated 2.0 Use {@link getKeyLookup()} instead
479479
*/
480480
protected function getIdxLookup($keys)

0 commit comments

Comments
 (0)