PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
passport
/
src
/
Bridge
<?php namespace Laravel\Passport\Bridge; use Laravel\Passport\Passport; use League\OAuth2\Server\Entities\ClientEntityInterface; use League\OAuth2\Server\Repositories\ScopeRepositoryInterface; class ScopeRepository implements ScopeRepositoryInterface { /** * {@inheritdoc} */ public function getScopeEntityByIdentifier($identifier) { if (Passport::hasScope($identifier)) { return new Scope($identifier); } } /** * {@inheritdoc} */ public function finalizeScopes( array $scopes, $grantType, ClientEntityInterface $clientEntity, $userIdentifier = null) { if (! in_array($grantType, ['password', 'personal_access', 'client_credentials'])) { $scopes = collect($scopes)->reject(function ($scope) { return trim($scope->getIdentifier()) === '*'; })->values()->all(); } return collect($scopes)->filter(function ($scope) { return Passport::hasScope($scope->getIdentifier()); })->values()->all(); } }
[-] AccessTokenRepository.php
[edit]
[-] UserRepository.php
[edit]
[-] AuthCode.php
[edit]
[-] FormatsScopesForStorage.php
[edit]
[+]
..
[-] Scope.php
[edit]
[-] RefreshTokenRepository.php
[edit]
[-] Client.php
[edit]
[-] AccessToken.php
[edit]
[-] ClientRepository.php
[edit]
[-] RefreshToken.php
[edit]
[-] AuthCodeRepository.php
[edit]
[-] PersonalAccessGrant.php
[edit]
[-] User.php
[edit]
[-] ScopeRepository.php
[edit]