for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Rinvex\Oauth\Exceptions;
use Illuminate\Support\Arr;
use Illuminate\Auth\Access\AuthorizationException;
class MissingScopeException extends AuthorizationException
{
/**
* The scopes that the user did not have.
*
* @var array
*/
protected $scopes;
* Create a new missing scope exception.
* @param array|string $scopes
* @param string $message
* @return void
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
public function __construct($scopes = [], $message = 'Invalid scope(s) provided.')
parent::__construct($message);
$this->scopes = Arr::wrap($scopes);
}
* Get the scopes that the user did not have.
* @return array
public function scopes()
return $this->scopes;
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.