src/Entity/CRM/BhpCourse.php line 11

  1. <?php
  2. namespace App\Entity\CRM;
  3. use App\Repository\BhpCourseRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassBhpCourseRepository::class)]
  8. class BhpCourse
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column]
  17.     private ?bool $isActive null;
  18.     #[ORM\OneToMany(mappedBy'bhpCourse'targetEntityBhpJournals::class)]
  19.     private Collection $bhpJournals;
  20.     public function __construct()
  21.     {
  22.         $this->bhpJournals = new ArrayCollection();
  23.     }
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getName(): ?string
  29.     {
  30.         return $this->name;
  31.     }
  32.     public function setName(string $name): static
  33.     {
  34.         $this->name $name;
  35.         return $this;
  36.     }
  37.     public function isIsActive(): ?bool
  38.     {
  39.         return $this->isActive;
  40.     }
  41.     public function setIsActive(bool $isActive): static
  42.     {
  43.         $this->isActive $isActive;
  44.         return $this;
  45.     }
  46.     /**
  47.      * @return Collection<int, BhpJournals>
  48.      */
  49.     public function getBhpJournals(): Collection
  50.     {
  51.         return $this->bhpJournals;
  52.     }
  53.     public function addBhpJournal(BhpJournals $bhpJournal): static
  54.     {
  55.         if (!$this->bhpJournals->contains($bhpJournal)) {
  56.             $this->bhpJournals->add($bhpJournal);
  57.             $bhpJournal->setBhpCourse($this);
  58.         }
  59.         return $this;
  60.     }
  61.     public function removeBhpJournal(BhpJournals $bhpJournal): static
  62.     {
  63.         if ($this->bhpJournals->removeElement($bhpJournal)) {
  64.             // set the owning side to null (unless already changed)
  65.             if ($bhpJournal->getBhpCourse() === $this) {
  66.                 $bhpJournal->setBhpCourse(null);
  67.             }
  68.         }
  69.         return $this;
  70.     }
  71. }