lithium\storage\cache\adapter\Redis::respondsTo()
Determines if a given method can be called.
Parameters
-
string
$methodName of the method.
-
boolean
$internalProvide
trueto perform check from inside the class/object. Whenfalsechecks also for public visibility; defaults tofalse.
Returns
booleanReturns true if the method can be called, false otherwise.
Source
public function respondsTo($method, $internal = false) {
$message = '`' . __METHOD__ . '()` has been deprecated. ';
$message .= 'Use `is_callable([$adapter->connection, \'<method>\'])` instead.';
trigger_error($message, E_USER_DEPRECATED);
if (parent::respondsTo($method, $internal)) {
return true;
}
return is_callable([$this->connection, $method]);
}