File "GuardDoesNotMatch.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-permission/src/Exceptions/GuardDoesNotMatch.php
File size: 489 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Permission\Exceptions;

use Illuminate\Support\Collection;
use InvalidArgumentException;

class GuardDoesNotMatch extends InvalidArgumentException
{
    public static function create(string $givenGuard, Collection $expectedGuards)
    {
        return new static(__('The given role or permission should use guard `:expected` instead of `:given`.', [
            'expected' => $expectedGuards->implode(', '),
            'given' => $givenGuard,
        ]));
    }
}