Merge "skins: Update .gitignore"
[lhc/web/wiklou.git] / includes / objectcache / EmptyBagOStuff.php
index 3f6f6c7..9595b83 100644 (file)
@@ -69,12 +69,12 @@ class EmptyBagOStuff extends BagOStuff {
 
        /**
         * @param string $key
-        * @param closure $callback Callback method to be executed
+        * @param Closure $callback Callback method to be executed
         * @param int $exptime Either an interval in seconds or a unix timestamp for expiry
         * @param int $attempts The amount of times to attempt a merge in case of failure
         * @return bool Success
         */
-       public function merge( $key, closure $callback, $exptime = 0, $attempts = 10 ) {
+       public function merge( $key, Closure $callback, $exptime = 0, $attempts = 10 ) {
                return true;
        }
 }