src/Flexy/ShopBundle/Entity/Order/DemandeFund.php line 13

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Order;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Flexy\ShopBundle\Repository\Order\DemandeFundRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ApiResource]
  9. #[ORM\Entity(repositoryClassDemandeFundRepository::class)]
  10. class DemandeFund
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column(type'integer')]
  15.     private $id;
  16.     #[ORM\Column(type'datetime_immutable'nullabletrue)]
  17.     private ?\DateTimeImmutable $createdAt null;
  18.     #[ORM\Column(type'text'nullabletrue)]
  19.     private ?string $comment null;
  20.     #[ORM\OneToMany(targetEntityOrder::class, mappedBy'demandeFund'cascade: ['persist'], orphanRemovalfalse)]
  21.     private \Doctrine\Common\Collections\Collection|array $orders;
  22.     public function __construct()
  23.     {
  24.         $this->orders = new ArrayCollection();
  25.     }
  26.     
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getCreatedAt(): ?\DateTimeImmutable
  32.     {
  33.         return $this->createdAt;
  34.     }
  35.     public function setCreatedAt(?\DateTimeImmutable $createdAt): self
  36.     {
  37.         $this->createdAt $createdAt;
  38.         return $this;
  39.     }
  40.     public function getComment(): ?string
  41.     {
  42.         return $this->comment;
  43.     }
  44.     public function setComment(?string $comment): self
  45.     {
  46.         $this->comment $comment;
  47.         return $this;
  48.     }
  49.     /**
  50.      * @return Collection|Order[]
  51.      */
  52.     public function getOrders(): Collection
  53.     {
  54.         return $this->orders;
  55.     }
  56.     public function addOrder(Order $order): self
  57.     {
  58.         if (!$this->orders->contains($order)) {
  59.             $this->orders[] = $order;
  60.             $order->setDemandeFund($this);
  61.         }
  62.         return $this;
  63.     }
  64.     public function removeOrder(Order $order): self
  65.     {
  66.         if ($this->orders->removeElement($order)) {
  67.             // set the owning side to null (unless already changed)
  68.             if ($order->getDemandeFund() === $this) {
  69.                 $order->setDemandeFund(null);
  70.             }
  71.         }
  72.         return $this;
  73.     }
  74. }