BillAccounting.php 306 B

123456789101112131415161718
  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. class BillAccounting extends AbstractBillAccounting
  13. {
  14. }