AuthCodeEntity.php in Simple OAuth (OAuth2) & OpenID Connect 5.x
Same filename and directory in other branches
Namespace
Drupal\simple_oauth\EntitiesFile
src/Entities/AuthCodeEntity.phpView source
<?php
namespace Drupal\simple_oauth\Entities;
use League\OAuth2\Server\Entities\AuthCodeEntityInterface;
use League\OAuth2\Server\Entities\Traits\AuthCodeTrait;
use League\OAuth2\Server\Entities\Traits\EntityTrait;
use League\OAuth2\Server\Entities\Traits\TokenEntityTrait;
/**
* The entity for the Auth Code grant.
*/
class AuthCodeEntity implements AuthCodeEntityInterface {
use EntityTrait, TokenEntityTrait, AuthCodeTrait;
}
Classes
Name | Description |
---|---|
AuthCodeEntity | The entity for the Auth Code grant. |