mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-28 16:00:24 +05:30
Remove default scope from abstract grant
This should be added to the AbstractAuthorizeGrant instead as it is only used for an authorization request
This commit is contained in:
parent
bd2cdaf5da
commit
ab760a805c
@ -56,11 +56,6 @@ abstract class AbstractGrant implements GrantTypeInterface
|
|||||||
*/
|
*/
|
||||||
protected $scopeRepository;
|
protected $scopeRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $defaultScope = '';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var AuthCodeRepositoryInterface
|
* @var AuthCodeRepositoryInterface
|
||||||
*/
|
*/
|
||||||
@ -110,14 +105,6 @@ abstract class AbstractGrant implements GrantTypeInterface
|
|||||||
$this->scopeRepository = $scopeRepository;
|
$this->scopeRepository = $scopeRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $scope
|
|
||||||
*/
|
|
||||||
public function setDefaultScope($scope)
|
|
||||||
{
|
|
||||||
$this->defaultScope = $scope;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param RefreshTokenRepositoryInterface $refreshTokenRepository
|
* @param RefreshTokenRepositoryInterface $refreshTokenRepository
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user