rdbms: Add IDatabase::cancelAtomic()
[lhc/web/wiklou.git] / includes / libs / rdbms / database / DBConnRef.php
index 1f8e56c..c0855df 100644 (file)
@@ -519,6 +519,10 @@ class DBConnRef implements IDatabase {
                return $this->__call( __FUNCTION__, func_get_args() );
        }
 
+       public function cancelAtomic( $fname = __METHOD__ ) {
+               return $this->__call( __FUNCTION__, func_get_args() );
+       }
+
        public function doAtomicSection( $fname, callable $callback ) {
                return $this->__call( __FUNCTION__, func_get_args() );
        }