Commit 9944192a authored by Rack Lin's avatar Rack Lin

Fixed Memcached get connection instance typo in __callStatic method.

Signed-off-by: 's avatarRack Lin <racklin@gmail.com>
parent 38234c61
...@@ -68,7 +68,7 @@ class Memcached { ...@@ -68,7 +68,7 @@ class Memcached {
*/ */
public static function __callStatic($method, $parameters) public static function __callStatic($method, $parameters)
{ {
return call_user_func_array(array(static::instance(), $method), $parameters); return call_user_func_array(array(static::connection(), $method), $parameters);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment