src/Entity/CustomerContentAboutUs.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerContentAboutUsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassCustomerContentAboutUsRepository::class)]
  9. class CustomerContentAboutUs
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?bool $active null;
  17.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  18.     private ?string $description null;
  19.     #[ORM\OneToMany(
  20.         mappedBy'customerContentAboutUs',
  21.         targetEntityCustomerContentAboutUsImage::class,
  22.         cascade: ['persist''remove']
  23.     )]
  24.     private Collection $customerContentAboutUsImages;
  25.     public function __construct()
  26.     {
  27.         $this->customerContentAboutUsImages = new ArrayCollection();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function isActive(): ?bool
  34.     {
  35.         return $this->active;
  36.     }
  37.     public function setActive(?bool $active): self
  38.     {
  39.         $this->active $active;
  40.         return $this;
  41.     }
  42.     public function getDescription(): ?string
  43.     {
  44.         return $this->description;
  45.     }
  46.     public function setDescription(string $description): self
  47.     {
  48.         $this->description $description;
  49.         return $this;
  50.     }
  51.     /**
  52.      * @return Collection<int, CustomerContentAboutUsImage>
  53.      */
  54.     public function getCustomerContentAboutUsImages(): Collection
  55.     {
  56.         return $this->customerContentAboutUsImages;
  57.     }
  58.     public function addCustomerContentAboutUsImage(CustomerContentAboutUsImage $customerContentAboutUsImage): self
  59.     {
  60.         if (!$this->customerContentAboutUsImages->contains($customerContentAboutUsImage)) {
  61.             $this->customerContentAboutUsImages->add($customerContentAboutUsImage);
  62.             $customerContentAboutUsImage->setCustomerContentAboutUs($this);
  63.         }
  64.         return $this;
  65.     }
  66.     public function removeCustomerContentAboutUsImage(CustomerContentAboutUsImage $customerContentAboutUsImage): self
  67.     {
  68.         if ($this->customerContentAboutUsImages->removeElement($customerContentAboutUsImage)) {
  69.             // set the owning side to null (unless already changed)
  70.             if ($customerContentAboutUsImage->getCustomerContentAboutUs() === $this) {
  71.                 $customerContentAboutUsImage->setCustomerContentAboutUs(null);
  72.             }
  73.         }
  74.         return $this;
  75.     }
  76. }