src/Entity/Switcher.php line 26

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SwitcherRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7.  
  8. use Gedmo\Mapping\Annotation as Gedmo;
  9. use Symfony\Component\Validator\Constraints as Assert;
  10. use Symfony\Component\HttpFoundation\File\File;
  11. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  12. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  13. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  14. use Symfony\Component\PropertyAccess\PropertyAccess
  15. /**
  16.  * @ORM\Entity(repositoryClass=SwitcherRepository::class)
  17.  * @Vich\Uploadable
  18.  */
  19. class Switcher implements TranslatableInterface
  20.     use TranslatableTrait;
  21.     /**
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue
  24.      * @ORM\Column(type="integer")
  25.      */
  26.     private $id;  
  27.     /**
  28.      * @ORM\Column(type="integer", nullable=true)
  29.      */
  30.     private $position;
  31.     /**
  32.      * @ORM\Column(type="boolean", nullable=true)
  33.      */
  34.     private $publier;
  35.  
  36.  
  37.     protected $translations;
  38.     public function __construct()
  39.     { 
  40.     }
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getPosition(): ?int
  46.     {
  47.         return $this->position;
  48.     }
  49.     public function setPosition(?int $position): self
  50.     {
  51.         $this->position $position;
  52.         return $this;
  53.     }
  54.     public function getPublier(): ?bool
  55.     {
  56.         return $this->publier;
  57.     }
  58.     public function setPublier(?bool $publier): self
  59.     {
  60.         $this->publier $publier;
  61.         return $this;
  62.     }  
  63.    
  64.    
  65.     public function __call($method$arguments)
  66.     {
  67.         return PropertyAccess::createPropertyAccessor()->getValue($this->translate(), $method);
  68.     }
  69. }