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);
    }