Merge pull request #983 from racklin/bugfix/memcached
Fixed Memcached get connection instance typo in __callStatic method.
This commit is contained in:
commit
764e7bc630
|
@ -68,7 +68,7 @@ protected static function connect($servers)
|
||||||
*/
|
*/
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue