| 123456789101112131415161718 |
- <?php
- namespace oauth2\entity;
- use League\OAuth2\Server\Entities\AuthCodeEntityInterface;
- use League\OAuth2\Server\Entities\Traits\EntityTrait;
- use League\OAuth2\Server\Entities\Traits\TokenEntityTrait;
- use League\OAuth2\Server\Entities\Traits\AuthCodeTrait;
- /**
- * Class AuthCodeEntity
- * @package oauth2\entity
- * @author jianyan74 <751393839@qq.com>
- */
- class AuthCodeEntity implements AuthCodeEntityInterface
- {
- use EntityTrait, TokenEntityTrait, AuthCodeTrait;
- }
|