Neos\Flow\Mvc\RequestMatcher::isController PHP 메소드

isController() 공개 메소드

Check if the current Request's Controller equals the argument
public isController ( string $controller ) : boolean
$controller string
리턴 boolean
    public function isController($controller)
    {
        return $this->matchRequestProperty('controllerName', $controller, 100);
    }