UserEntity.php 310 B

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