0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-06 06:50:04 +00:00
salesagility_SuiteCRM/Api/V8/OAuth2/Repository/ScopeRepository.php
zoltan kocsardi a29cc3a54b new api init
2018-04-30 10:59:04 +01:00

28 lines
604 B
PHP

<?php
namespace Api\V8\OAuth2\Repository;
use League\OAuth2\Server\Entities\ClientEntityInterface;
use League\OAuth2\Server\Repositories\ScopeRepositoryInterface;
class ScopeRepository implements ScopeRepositoryInterface
{
/**
* @inheritdoc
*/
public function getScopeEntityByIdentifier($identifier)
{
}
/**
* @inheritdoc
*/
public function finalizeScopes(
array $scopes,
$grantType,
ClientEntityInterface $clientEntity,
$userIdentifier = null
) {
// we just return scopes for now
return $scopes;
}
}