mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
13 lines
254 B
PHP
13 lines
254 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\components\OAuth2\Traits;
|
|
|
|
trait ValidateScopesTrait {
|
|
|
|
public function validateScopes($scopes, $redirectUri = null): array {
|
|
return parent::validateScopes($scopes, $redirectUri = null);
|
|
}
|
|
|
|
}
|