Commit 764e7bc6 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #983 from racklin/bugfix/memcached

Fixed Memcached get connection instance typo in __callStatic method.
parents b194d837 9944192a
......@@ -68,7 +68,7 @@ class Memcached {
*/
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