src/Entity/Demande.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DemandeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=DemandeRepository::class)
  9.  */
  10. class Demande
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="demandes")
  20.      * @ORM\JoinColumn(nullable=false)
  21.      */
  22.     private $user;
  23.     /**
  24.      * @ORM\ManyToOne(targetEntity=Livre::class, inversedBy="demandes")
  25.      * @ORM\JoinColumn(nullable=false)
  26.      */
  27.     private $livre;
  28.     /**
  29.      * @ORM\Column(type="integer")
  30.      */
  31.     private $status;
  32.     /**
  33.      * @ORM\ManyToOne(targetEntity=Livre::class, inversedBy="demandes")
  34.      */
  35.     private $livre2;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      */
  39.     private $date;
  40.     /**
  41.      * @ORM\OneToMany(targetEntity=Notification::class, mappedBy="demande")
  42.      */
  43.     private $notifications;
  44.     public function __construct()
  45.     {
  46.         $this->notifications = new ArrayCollection();
  47.     }
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getUser(): ?User
  53.     {
  54.         return $this->user;
  55.     }
  56.     public function setUser(?User $user): self
  57.     {
  58.         $this->user $user;
  59.         return $this;
  60.     }
  61.     public function getLivre(): ?Livre
  62.     {
  63.         return $this->livre;
  64.     }
  65.     public function setLivre(?Livre $livre): self
  66.     {
  67.         $this->livre $livre;
  68.         return $this;
  69.     }
  70.     public function getStatus(): ?int
  71.     {
  72.         return $this->status;
  73.     }
  74.     public function setStatus(int $status): self
  75.     {
  76.         $this->status $status;
  77.         return $this;
  78.     }
  79.     public function getLivre2(): ?Livre
  80.     {
  81.         return $this->livre2;
  82.     }
  83.     public function setLivre2(?Livre $livre2): self
  84.     {
  85.         $this->livre2 $livre2;
  86.         return $this;
  87.     }
  88.     public function getDate(): ?\DateTimeInterface
  89.     {
  90.         return $this->date;
  91.     }
  92.     public function setDate(\DateTimeInterface $date): self
  93.     {
  94.         $this->date $date;
  95.         return $this;
  96.     }
  97.     /**
  98.      * @return Collection<int, Notification>
  99.      */
  100.     public function getNotifications(): Collection
  101.     {
  102.         return $this->notifications;
  103.     }
  104.     public function addNotification(Notification $notification): self
  105.     {
  106.         if (!$this->notifications->contains($notification)) {
  107.             $this->notifications[] = $notification;
  108.             $notification->setDemande($this);
  109.         }
  110.         return $this;
  111.     }
  112.     public function removeNotification(Notification $notification): self
  113.     {
  114.         if ($this->notifications->removeElement($notification)) {
  115.             // set the owning side to null (unless already changed)
  116.             if ($notification->getDemande() === $this) {
  117.                 $notification->setDemande(null);
  118.             }
  119.         }
  120.         return $this;
  121.     }
  122. }