src/Entity/CustomerFaq.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerFaqRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassCustomerFaqRepository::class)]
  8. class CustomerFaq
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column]
  15.     private ?bool $active null;
  16.     #[ORM\Column(length100)]
  17.     private ?string $textColor null;
  18.     #[ORM\Column(length100)]
  19.     private ?string $backgroundColor null;
  20.     #[ORM\OneToMany(mappedBy'customerFaq'targetEntityCustomerFaqItem::class, cascade: ['persist''remove'])]
  21.     private Collection $items;
  22.     public function __construct()
  23.     {
  24.         $this->items = new ArrayCollection();
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function isActive(): ?bool
  31.     {
  32.         return $this->active;
  33.     }
  34.     public function setActive(bool $active): self
  35.     {
  36.         $this->active $active;
  37.         return $this;
  38.     }
  39.     public function getTextColor(): ?string
  40.     {
  41.         return $this->textColor;
  42.     }
  43.     public function setTextColor(string $textColor): self
  44.     {
  45.         $this->textColor $textColor;
  46.         return $this;
  47.     }
  48.     public function getBackgroundColor(): ?string
  49.     {
  50.         return $this->backgroundColor;
  51.     }
  52.     public function setBackgroundColor(string $backgroundColor): self
  53.     {
  54.         $this->backgroundColor $backgroundColor;
  55.         return $this;
  56.     }
  57.     /**
  58.      * @return Collection<int, CustomerFaqItem>
  59.      */
  60.     public function getItems(): Collection
  61.     {
  62.         return $this->items;
  63.     }
  64.     public function addItem(CustomerFaqItem $item): self
  65.     {
  66.         if (!$this->items->contains($item)) {
  67.             $this->items->add($item);
  68.             $item->setCustomerFaq($this);
  69.         }
  70.         return $this;
  71.     }
  72.     public function removeItem(CustomerFaqItem $item): self
  73.     {
  74.         if ($this->items->removeElement($item)) {
  75.             // set the owning side to null (unless already changed)
  76.             if ($item->getCustomerFaq() === $this) {
  77.                 $item->setCustomerFaq(null);
  78.             }
  79.         }
  80.         return $this;
  81.     }
  82. }