Files
accounts/api/components/OAuth2/Grants/ClientCredentialsGrant.php
2019-12-06 14:37:51 +03:00

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;
}