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

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

protected matchCustom ( Action $action ) : boolean
$action yii\base\Action the action to be performed
Результат boolean whether the rule should be applied
    protected function matchCustom($action)
    {
        return empty($this->matchCallback) || call_user_func($this->matchCallback, $this, $action);
    }