lithium\core\StaticObject::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 static function respondsTo($method, $internal = false) {
return Inspector::isCallable(get_called_class(), $method, $internal);
}