Merge "TraditionalImageGallery factor getCaptionHtml into own function"
[lhc/web/wiklou.git] / includes / libs / rdbms / database / IDatabase.php
index 675ba7f..6b3efa2 100644 (file)
@@ -1480,8 +1480,9 @@ interface IDatabase {
         *
         * @note: do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
         *
-        * The callback takes one argument:
+        * The callback takes the following arguments:
         *   - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK)
+        *   - This IDatabase instance (since 1.32)
         *
         * @param callable $callback
         * @param string $fname Caller name
@@ -1511,8 +1512,9 @@ interface IDatabase {
         *
         * @note: do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
         *
-        * The callback takes one argument:
+        * The callback takes the following arguments:
         *   - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_IDLE)
+        *   - This IDatabase instance (since 1.32)
         *
         * @param callable $callback
         * @param string $fname Caller name
@@ -1536,6 +1538,9 @@ interface IDatabase {
         *
         * Updates will execute in the order they were enqueued.
         *
+        * The callback takes the one argument:
+        *   - This IDatabase instance (since 1.32)
+        *
         * @param callable $callback
         * @param string $fname Caller name
         * @since 1.22