src/Entity/PageInfos.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\PageInfosRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPageInfosRepository::class)]
  8. #[ApiResource]
  9. class PageInfos
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne(inversedBy'pageInfos')]
  16.     private ?Pages $page null;
  17.     #[ORM\Column(length100)]
  18.     private ?string $key null;
  19.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  20.     private ?string $value null;
  21.     #[ORM\ManyToOne(inversedBy'pageInfos')]
  22.     private ?Slider $slider null;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getPage(): ?Pages
  28.     {
  29.         return $this->page;
  30.     }
  31.     public function setPage(?Pages $page): static
  32.     {
  33.         $this->page $page;
  34.         return $this;
  35.     }
  36.     public function getKey(): ?string
  37.     {
  38.         return $this->key;
  39.     }
  40.     public function setKey(string $key): static
  41.     {
  42.         $this->key $key;
  43.         return $this;
  44.     }
  45.     public function getValue(): ?string
  46.     {
  47.         return $this->value;
  48.     }
  49.     public function setValue(?string $value): static
  50.     {
  51.         $this->value $value;
  52.         return $this;
  53.     }
  54.     public function getSlider(): ?Slider
  55.     {
  56.         return $this->slider;
  57.     }
  58.     public function setSlider(?Slider $slider): static
  59.     {
  60.         $this->slider $slider;
  61.         return $this;
  62.     }
  63. }