You are here

AuthCodeEntity.php in Simple OAuth (OAuth2) & OpenID Connect 5.x

Same filename and directory in other branches
  1. 8.4 src/Entities/AuthCodeEntity.php

File

src/Entities/AuthCodeEntity.php
View 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

Namesort descending Description
AuthCodeEntity The entity for the Auth Code grant.