Bill.php 300 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity\Billing;
  4. use ApiPlatform\Metadata\ApiResource;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7. * Facture.
  8. */
  9. #[ApiResource(operations: [])]
  10. // #[Auditable]
  11. #[ORM\Entity]
  12. #[ORM\Table(name: 'BillAccounting')]
  13. class Bill extends AbstractBillAccounting
  14. {
  15. }