lithium\storage\cache\adapter\Memcache::__call PHP Method

__call() public method

Cache::adapter('memcache')->methodName($argument);
public __call ( string $method, array $params = [] ) : mixed
$method string Name of the method to call.
$params array Parameter list to use when calling $method.
return mixed Returns the result of the method call.
    public function __call($method, $params = array())
    {
        return call_user_func_array(array(&$this->connection, $method), $params);
    }