src/Entity/Slide.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\PropertyAccess\PropertyAccess;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Gedmo\Blameable\Traits\BlameableEntity;
  7. use Gedmo\Timestampable\Traits\TimestampableEntity;
  8. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  9. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  10. use \App\Entity\Media;
  11. use \App\Repository\SlideRepository;
  12. #[ORM\Entity(repositoryClassSlideRepository::class)]
  13. class Slide implements TranslatableInterface
  14. {
  15.     use BlameableEntity;
  16.     use TimestampableEntity;
  17.     use TranslatableTrait;
  18.     #[Assert\Valid]
  19.     protected $translations;
  20.     #[ORM\Id]
  21.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  22.     #[ORM\Column]
  23.     private ?int $id null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $link null;
  26.     #[ORM\Column(nullabletrue)]
  27.     #[Assert\Positive()]
  28.     private ?int $slideOrder 9999;
  29.     public function __call($method$arguments)
  30.     {
  31.         return PropertyAccess::createPropertyAccessor()->getValue($this->translate(), $method);
  32.     }
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getLink(): ?string
  38.     {
  39.         return $this->link;
  40.     }
  41.     public function setLink(?string $link): self
  42.     {
  43.         $this->link $link;
  44.         return $this;
  45.     }
  46.     public function getSlideOrder(): int
  47.     {
  48.         return $this->slideOrder;
  49.     }
  50.     public function setSlideOrder(int $slideOrder): self
  51.     {
  52.         $this->slideOrder $slideOrder;
  53.         return $this;
  54.     }
  55. }