AuthCodeEntity.php 474 B

123456789101112131415161718
  1. <?php
  2. namespace oauth2\entity;
  3. use League\OAuth2\Server\Entities\AuthCodeEntityInterface;
  4. use League\OAuth2\Server\Entities\Traits\EntityTrait;
  5. use League\OAuth2\Server\Entities\Traits\TokenEntityTrait;
  6. use League\OAuth2\Server\Entities\Traits\AuthCodeTrait;
  7. /**
  8. * Class AuthCodeEntity
  9. * @package oauth2\entity
  10. * @author jianyan74 <751393839@qq.com>
  11. */
  12. class AuthCodeEntity implements AuthCodeEntityInterface
  13. {
  14. use EntityTrait, TokenEntityTrait, AuthCodeTrait;
  15. }
粤ICP备19079148号