src/Entity/RefreshToken.php line 21
<?php/** This file is part of the Pellipop project.** (c) Mobizel** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*/declare(strict_types=1);namespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken as BaseRefreshToken;#[ORM\Entity]#[ORM\Table(name: "refresh_tokens")]class RefreshToken extends BaseRefreshToken{}