mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-13 21:56:14 +00:00
first commit
This commit is contained in:
32
src/Id/Exceptions/MissingScopeException.php
Normal file
32
src/Id/Exceptions/MissingScopeException.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user