mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-13 13:46:13 +00:00
32 lines
677 B
PHP
32 lines
677 B
PHP
<?php
|
|
|
|
namespace Anikeen\Id\Exceptions;
|
|
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
|
use Illuminate\Support\Arr;
|
|
|
|
class MissingScopeException extends AuthorizationException
|
|
{
|
|
/**
|
|
* The scopes that the user did not have.
|
|
*/
|
|
protected array $scopes;
|
|
|
|
/**
|
|
* Create a new missing scope exception.
|
|
*/
|
|
public function __construct(array|string $scopes = [], $message = 'Invalid scope(s) provided.')
|
|
{
|
|
parent::__construct($message);
|
|
|
|
$this->scopes = Arr::wrap($scopes);
|
|
}
|
|
|
|
/**
|
|
* Get the scopes that the user did not have.
|
|
*/
|
|
public function scopes(): array
|
|
{
|
|
return $this->scopes;
|
|
}
|
|
} |