src/Entity/Payment/PaymentToken.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\Payment;use Doctrine\ORM\Mapping as ORM;use Payum\Core\Model\Token;#[ORM\Entity]#[ORM\Table(name: 'app_payment_token')]class PaymentToken extends Token{}