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