src/Entity/Banner.php line 20

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Symfony\Component\PropertyAccess\PropertyAccess;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Blameable\Traits\BlameableEntity;
  8. use Gedmo\Timestampable\Traits\TimestampableEntity;
  9. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  10. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  11. use App\Entity\Media;
  12. use App\Repository\BannerRepository;
  13. #[UniqueEntity('key')]
  14. #[ORM\Entity(repositoryClassBannerRepository::class)]
  15. class Banner implements TranslatableInterface
  16. {
  17.     use BlameableEntity;
  18.     use TimestampableEntity;
  19.     use TranslatableTrait;
  20.     #[Assert\Valid]
  21.     protected $translations;
  22.     #[ORM\Id]
  23.     #[ORM\GeneratedValue(strategy'IDENTITY')]
  24.     #[ORM\Column]
  25.     private ?int $id null;
  26.     #[ORM\Column(length255)]
  27.     #[Assert\NotNull()]
  28.     private ?string $key null;
  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 getKey(): ?string
  38.     {
  39.         return $this->key;
  40.     }
  41.     public function setKey(string $key): self
  42.     {
  43.         $this->key $key;
  44.         return $this;
  45.     }
  46. }