src/Entity/Slide.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\SlideRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassSlideRepository::class)]
  8. #[ApiResource]
  9. class Slide
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $name null;
  17.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  18.     private ?string $content null;
  19.     #[ORM\ManyToOne(inversedBy'slides')]
  20.     private ?MediaObject $media null;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getName(): ?string
  26.     {
  27.         return $this->name;
  28.     }
  29.     public function setName(?string $name): static
  30.     {
  31.         $this->name $name;
  32.         return $this;
  33.     }
  34.     public function getContent(): ?string
  35.     {
  36.         return $this->content;
  37.     }
  38.     public function setContent(?string $content): static
  39.     {
  40.         $this->content $content;
  41.         return $this;
  42.     }
  43.     public function getMedia(): ?MediaObject
  44.     {
  45.         return $this->media;
  46.     }
  47.     public function setMedia(?MediaObject $media): static
  48.     {
  49.         $this->media $media;
  50.         return $this;
  51.     }
  52. }