修正memcache缓存驱动

This commit is contained in:
thinkphp
2016-07-25 13:58:24 +08:00
parent 9cee80db6b
commit 8c4310f637

View File

@@ -110,7 +110,7 @@ class Memcache
*/
public function inc($name, $step = 1, $expire = null)
{
return $this->handler->increment($name, $step, $expire);
return $this->handler->increment($name, $step);
}
/**
@@ -123,7 +123,7 @@ class Memcache
*/
public function dec($name, $step = 1, $expire = null)
{
return $this->handler->decrement($name, $step, $expire);
return $this->handler->decrement($name, $step);
}
/**