src/Entity/Subject.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SubjectRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=SubjectRepository::class)
  9.  */
  10. class Subject
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $designation;
  22.     /**
  23.      * @ORM\Column(type="text", nullable=true)
  24.      */
  25.     private $description;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=Rate::class, mappedBy="subject", orphanRemoval=true)
  28.      */
  29.     private $rates;
  30.     public function __construct()
  31.     {
  32.         $this->rates = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getDesignation(): ?string
  39.     {
  40.         return $this->designation;
  41.     }
  42.     public function setDesignation(string $designation): self
  43.     {
  44.         $this->designation $designation;
  45.         return $this;
  46.     }
  47.     public function getDescription(): ?string
  48.     {
  49.         return $this->description;
  50.     }
  51.     public function setDescription(?string $description): self
  52.     {
  53.         $this->description $description;
  54.         return $this;
  55.     }
  56.     /**
  57.      * @return Collection<int, Rate>
  58.      */
  59.     public function getRates(): Collection
  60.     {
  61.         return $this->rates;
  62.     }
  63.     public function addRate(Rate $rate): self
  64.     {
  65.         if (!$this->rates->contains($rate)) {
  66.             $this->rates[] = $rate;
  67.             $rate->setSubject($this);
  68.         }
  69.         return $this;
  70.     }
  71.     public function removeRate(Rate $rate): self
  72.     {
  73.         if ($this->rates->removeElement($rate)) {
  74.             // set the owning side to null (unless already changed)
  75.             if ($rate->getSubject() === $this) {
  76.                 $rate->setSubject(null);
  77.             }
  78.         }
  79.         return $this;
  80.     }
  81. }