Making MemcacheEngine match the interface.

This commit is contained in:
mark_story 2010-09-18 11:11:51 -04:00
parent b432e60971
commit 5e725e62ca

View file

@ -107,7 +107,7 @@ class MemcacheEngine extends CacheEngine {
* @return boolean True if the data was succesfully cached, false on failure * @return boolean True if the data was succesfully cached, false on failure
* @see http://php.net/manual/en/memcache.set.php * @see http://php.net/manual/en/memcache.set.php
*/ */
public function write($key, &$value, $duration) { public function write($key, $value, $duration) {
return $this->__Memcache->set($key, $value, $this->settings['compress'], $duration); return $this->__Memcache->set($key, $value, $this->settings['compress'], $duration);
} }