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

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

protected matchVerb ( string $verb ) : boolean
$verb string the request method.
Результат boolean whether the rule applies to the request
    protected function matchVerb($verb)
    {
        return empty($this->verbs) || in_array(strtoupper($verb), array_map('strtoupper', $this->verbs), true);
    }