BillAccounting.php 382 B

1234567891011121314151617181920
  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 ou avoir (@see Bill, BillCredit).
  8. */
  9. #[ApiResource(operations: [])]
  10. // #[Auditable]
  11. #[ORM\Entity]
  12. #[ORM\Table(name: 'BillAccounting')]
  13. #[ORM\InheritanceType('SINGLE_TABLE')]
  14. class BillAccounting extends AbstractBillAccounting
  15. {
  16. }