ShortifyPunit\ShortifyPunit::_isMethodStubbed PHP Метод

_isMethodStubbed() защищенный статический Метод

Checking if a method with specific arguments has been stubbed
protected static _isMethodStubbed ( $className, $instanceId, $methodName ) : boolean
$className
$instanceId
$methodName
Результат boolean
    protected static function _isMethodStubbed($className, $instanceId, $methodName)
    {
        // check if instance of this method even exist
        if (!isset(self::$returnValues[$className][$instanceId][$methodName])) {
            return false;
        }
        return true;
    }