mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
13 lines
286 B
PHP
13 lines
286 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\components\OAuth2\Grants;
|
|
|
|
use api\components\OAuth2\CryptTrait;
|
|
use League\OAuth2\Server\Grant\ClientCredentialsGrant as BaseClientCredentialsGrant;
|
|
|
|
class ClientCredentialsGrant extends BaseClientCredentialsGrant {
|
|
use CryptTrait;
|
|
|
|
}
|