Dietcube\ControllerTest::getInvokableMethod PHP Method

getInvokableMethod() public static method

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