| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Billing;
- // use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * Classe ... qui ...
- */
- // #[Auditable]
- #[ORM\Entity]
- class PayfipPaymentReturn
- {
- #[ORM\Id]
- #[ORM\Column]
- #[ORM\GeneratedValue]
- private ?int $id = null;
- #[ORM\ManyToOne(cascade: ['persist'])]
- #[ORM\JoinColumn(nullable: false)]
- private Bill $bill;
- public function getId(): ?int
- {
- return $this->id;
- }
- public function getBill(): ?Bill
- {
- return $this->bill;
- }
- public function setBill(?Bill $bill): self
- {
- $this->bill = $bill;
- return $this;
- }
- }
|