aboutsummaryrefslogtreecommitdiffstats
path: root/includes/libs/rdbms
diff options
context:
space:
mode:
authordaniel <dkinzler@wikimedia.org>2020-07-13 11:00:30 +0200
committerdaniel <dkinzler@wikimedia.org>2020-07-13 11:00:30 +0200
commit3c50afa46b477591b22e36f93f47f525abce14d0 (patch)
tree85525cddae2a728665d91df19984ffdbfdaa17d5 /includes/libs/rdbms
parent631578c68595581e202e150b3a03027dbb9a8ada (diff)
downloadmediawikicore-3c50afa46b477591b22e36f93f47f525abce14d0.tar.gz
mediawikicore-3c50afa46b477591b22e36f93f47f525abce14d0.zip
Replace "@stable for subclassing" with "@stable to extend"
For compliance with the new version of the table interface policy (T255803). This patch was created by an automated search & replace operation on the includes/ directory. Bug: T257789 Change-Id: Ie32c1b11b3d16ddfc0c83a757327d449ff80b2e4
Diffstat (limited to 'includes/libs/rdbms')
-rw-r--r--includes/libs/rdbms/encasing/Blob.php2
-rw-r--r--includes/libs/rdbms/exception/DBError.php2
-rw-r--r--includes/libs/rdbms/exception/DBExpectedError.php2
-rw-r--r--includes/libs/rdbms/exception/DBQueryError.php2
-rw-r--r--includes/libs/rdbms/exception/DBTransactionError.php2
-rw-r--r--includes/libs/rdbms/exception/DBUnexpectedError.php2
6 files changed, 6 insertions, 6 deletions
diff --git a/includes/libs/rdbms/encasing/Blob.php b/includes/libs/rdbms/encasing/Blob.php
index e736092b15c0..7d3c2d382a44 100644
--- a/includes/libs/rdbms/encasing/Blob.php
+++ b/includes/libs/rdbms/encasing/Blob.php
@@ -4,7 +4,7 @@ namespace Wikimedia\Rdbms;
/**
* @newable
- * @stable for subclassing
+ * @stable to extend
*/
class Blob implements IBlob {
/** @var string */
diff --git a/includes/libs/rdbms/exception/DBError.php b/includes/libs/rdbms/exception/DBError.php
index 2e6b61461bd6..95797224c6c6 100644
--- a/includes/libs/rdbms/exception/DBError.php
+++ b/includes/libs/rdbms/exception/DBError.php
@@ -26,7 +26,7 @@ use RuntimeException;
/**
* Database error base class
* @newable
- * @stable for subclassing
+ * @stable to extend
* @ingroup Database
*/
class DBError extends RuntimeException {
diff --git a/includes/libs/rdbms/exception/DBExpectedError.php b/includes/libs/rdbms/exception/DBExpectedError.php
index d5fbfe4190a0..ef4aba463cb5 100644
--- a/includes/libs/rdbms/exception/DBExpectedError.php
+++ b/includes/libs/rdbms/exception/DBExpectedError.php
@@ -27,7 +27,7 @@ use MessageSpecifier;
* frequently, so we try to give friendly error messages for them.
*
* @newable
- * @stable for subclassing
+ * @stable to extend
* @ingroup Database
* @since 1.23
*/
diff --git a/includes/libs/rdbms/exception/DBQueryError.php b/includes/libs/rdbms/exception/DBQueryError.php
index 5600f65e7fb3..06293daca0d6 100644
--- a/includes/libs/rdbms/exception/DBQueryError.php
+++ b/includes/libs/rdbms/exception/DBQueryError.php
@@ -24,7 +24,7 @@ namespace Wikimedia\Rdbms;
/**
* @ingroup Database
* @newable
- * @stable for subclassing
+ * @stable to extend
*/
class DBQueryError extends DBExpectedError {
/** @var string */
diff --git a/includes/libs/rdbms/exception/DBTransactionError.php b/includes/libs/rdbms/exception/DBTransactionError.php
index 84a2d1138927..20442dcd93c0 100644
--- a/includes/libs/rdbms/exception/DBTransactionError.php
+++ b/includes/libs/rdbms/exception/DBTransactionError.php
@@ -23,7 +23,7 @@ namespace Wikimedia\Rdbms;
/**
* @newable
- * @stable for subclassing
+ * @stable to extend
* @ingroup Database
*/
class DBTransactionError extends DBExpectedError {
diff --git a/includes/libs/rdbms/exception/DBUnexpectedError.php b/includes/libs/rdbms/exception/DBUnexpectedError.php
index a0ead5671b37..26069cb40f1d 100644
--- a/includes/libs/rdbms/exception/DBUnexpectedError.php
+++ b/includes/libs/rdbms/exception/DBUnexpectedError.php
@@ -23,7 +23,7 @@ namespace Wikimedia\Rdbms;
/**
* @newable
- * @stable for subclassing
+ * @stable to extend
* @ingroup Database
*/
class DBUnexpectedError extends DBError {