You are here

public function OpenIdConnectScopeRepository::__construct in Simple OAuth (OAuth2) & OpenID Connect 5.x

OpenIdConnectScopeRepository constructor.

Parameters

\League\OAuth2\Server\Repositories\ScopeRepositoryInterface $inner_scope_repository: The inner scope repository.

File

src/OpenIdConnect/OpenIdConnectScopeRepository.php, line 31

Class

OpenIdConnectScopeRepository
OpenID Connect scope repository decorator.

Namespace

Drupal\simple_oauth\OpenIdConnect

Code

public function __construct(ScopeRepositoryInterface $inner_scope_repository) {
  $this->innerScopeRepository = $inner_scope_repository;
}