Implement makeKeyInternal() for ReplicatedBagOStuff/MultiWriteBagOStuff
[lhc/web/wiklou.git] / includes / libs / objectcache / ReplicatedBagOStuff.php
index 1c14f7c..f2c3732 100644 (file)
@@ -129,6 +129,10 @@ class ReplicatedBagOStuff extends BagOStuff {
                $this->readStore->clearLastError();
        }
 
+       public function makeKeyInternal( $keyspace, $args ) {
+               return $this->writeStore->makeKeyInternal( ...func_get_args() );
+       }
+
        public function makeKey( $class, $component = null ) {
                return $this->writeStore->makeKey( ...func_get_args() );
        }