yii\filters\AccessRule::matchCustom PHP Method

matchCustom() protected method

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