lithium\test\MockerChain::respondsTo PHP Метод

respondsTo() публичный Метод

Determines if a given method can be called.
public respondsTo ( string $method, boolean $internal = false ) : boolean
$method string Name of the method.
$internal boolean Provide `true` to perform check from inside the class/object. When `false` checks also for public visibility; defaults to `false`.
Результат boolean Returns `true` if the method can be called, `false` otherwise.
    public function respondsTo($method, $internal = false)
    {
        $methodExists = in_array($method, array('gt', 'gte', 'lt', 'lte', 'eq'), true);
        return $methodExists || parent::respondsTo($method, $internal);
    }