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