Authority\Authority::cannot PHP Méthode

cannot() public méthode

Determine if current user cannot access the given action and resource Returns negation of can()
public cannot ( $action, $resource, $resourceValue = null ) : boolean
Résultat boolean
    public function cannot($action, $resource, $resourceValue = null)
    {
        return !$this->can($action, $resource, $resourceValue);
    }