src/Entity/CustomerFaqItem.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerFaqItemRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassCustomerFaqItemRepository::class)]
  7. class CustomerFaqItem
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $name null;
  15.     #[ORM\Column(typeTypes::TEXT)]
  16.     private ?string $description null;
  17.     #[ORM\Column]
  18.     private ?int $sortingIndex null;
  19.     #[ORM\ManyToOne(inversedBy'items')]
  20.     #[ORM\JoinColumn(nullablefalse)]
  21.     private ?CustomerFaq $customerFaq null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getName(): ?string
  27.     {
  28.         return $this->name;
  29.     }
  30.     public function setName(string $name): self
  31.     {
  32.         $this->name $name;
  33.         return $this;
  34.     }
  35.     public function getDescription(): ?string
  36.     {
  37.         return $this->description;
  38.     }
  39.     public function setDescription(string $description): self
  40.     {
  41.         $this->description $description;
  42.         return $this;
  43.     }
  44.     public function getSortingIndex(): ?int
  45.     {
  46.         return $this->sortingIndex;
  47.     }
  48.     public function setSortingIndex(int $sortingIndex): self
  49.     {
  50.         $this->sortingIndex $sortingIndex;
  51.         return $this;
  52.     }
  53.     public function getCustomerFaq(): ?CustomerFaq
  54.     {
  55.         return $this->customerFaq;
  56.     }
  57.     public function setCustomerFaq(?CustomerFaq $customerFaq): self
  58.     {
  59.         $this->customerFaq $customerFaq;
  60.         return $this;
  61.     }
  62. }