Ergo\Mixin::isCallable PHP Method

isCallable() public method

public isCallable ( $method )
    public function isCallable($method)
    {
        foreach ($this->_delegates as $delegate) {
            if (method_exists($delegate, $method)) {
                return true;
            }
        }
        return false;
    }