rdbms: add some more comments to DatabaseDomain
[lhc/web/wiklou.git] / includes / libs / objectcache / HashBagOStuff.php
index 1cfa0c7..b4087be 100644 (file)
@@ -94,7 +94,7 @@ class HashBagOStuff extends MediumSpecificBagOStuff {
                return true;
        }
 
-       public function add( $key, $value, $exptime = 0, $flags = 0 ) {
+       protected function doAdd( $key, $value, $exptime = 0, $flags = 0 ) {
                if ( $this->hasKey( $key ) && !$this->expire( $key ) ) {
                        return false; // key already set
                }