| 1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Billing;
- use ApiPlatform\Metadata\ApiResource;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * Facture ou avoir (@see Bill, BillCredit).
- */
- #[ApiResource(operations: [])]
- // #[Auditable]
- #[ORM\Entity]
- #[ORM\Table(name: 'BillAccounting')]
- #[ORM\InheritanceType('SINGLE_TABLE')]
- class BillAccounting extends AbstractBillAccounting
- {
- }
|