Dietcube\ControllerTest::getInvokableMethod PHP Метод

getInvokableMethod() публичный статический Метод

public static getInvokableMethod ( $method )
    public static function getInvokableMethod($method)
    {
        $class = new \ReflectionClass('\\Dietcube\\Controller');
        $method = $class->getMethod($method);
        $method->setAccessible(true);
        return $method;
    }