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

isAction() public method

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