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

isAction() 공개 메소드

Check if the current Request's Action equals the argument
public isAction ( string $action ) : boolean
$action string
리턴 boolean
    public function isAction($action)
    {
        return $this->matchRequestProperty('controllerActionName', $action, 1000);
    }