Neos\Flow\Mvc\RequestMatcher::isController PHP Method

isController() public method

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