yii\filters\AccessRule::matchAction PHP Метод

matchAction() защищенный Метод

protected matchAction ( Action $action ) : boolean
$action yii\base\Action the action
Результат boolean whether the rule applies to the action
    protected function matchAction($action)
    {
        return empty($this->actions) || in_array($action->id, $this->actions, true);
    }