src/Entity/RefreshToken.php line 21

  1. <?php
  2. /*
  3.  * This file is part of the Pellipop project.
  4.  *
  5.  * (c) Mobizel
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace App\Entity;
  12. use Doctrine\ORM\Mapping as ORM;
  13. use Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken as BaseRefreshToken;
  14. #[ORM\Entity]
  15. #[ORM\Table(name"refresh_tokens")]
  16. class RefreshToken extends BaseRefreshToken
  17. {
  18. }