Silber\Bouncer\Conductors\ChecksRole::notA PHP Метод

notA() публичный Метод

Check if the authority doesn't have any of the given roles.
public notA ( string $role ) : boolean
$role string
Результат boolean
    public function notA($role)
    {
        $roles = func_get_args();
        return $this->clipboard->checkRole($this->authority, $roles, 'not');
    }