HippoPHP\Hippo\CheckRepository::canInstantiate PHP Метод

canInstantiate() приватный Метод

Determines whether a "check" does indeed implement CheckInterface.
private canInstantiate ( ReflectionClass $reflectionClass ) : boolean
$reflectionClass ReflectionClass
Результат boolean
    private function canInstantiate(ReflectionClass $reflectionClass)
    {
        return $reflectionClass->implementsInterface('\\HippoPHP\\Hippo\\Checks\\CheckInterface') && !$reflectionClass->isInterface() && !$reflectionClass->isAbstract();
    }