src/Entity/Favori.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FavoriRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=FavoriRepository::class)
  7.  */
  8. class Favori
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=AppRoute::class)
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $route;
  21.     /**
  22.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="favoris")
  23.      * @ORM\JoinColumn(nullable=false)
  24.      */
  25.     private $user;
  26.     /**
  27.      * @ORM\Column(type="text", nullable=true)
  28.      */
  29.     private $config;
  30.     /**
  31.      * @ORM\Column(type="integer", nullable=true)
  32.      */
  33.     private $position;
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getRoute(): ?AppRoute
  39.     {
  40.         return $this->route;
  41.     }
  42.     public function setRoute(?AppRoute $route): self
  43.     {
  44.         $this->route $route;
  45.         return $this;
  46.     }
  47.     public function getUser(): ?User
  48.     {
  49.         return $this->user;
  50.     }
  51.     public function setUser(?User $user): self
  52.     {
  53.         $this->user $user;
  54.         return $this;
  55.     }
  56.     public function getConfig(): ?string
  57.     {
  58.         return $this->config;
  59.     }
  60.     public function setConfig(?string $config): self
  61.     {
  62.         $this->config $config;
  63.         return $this;
  64.     }
  65.     public function getPosition(): ?int
  66.     {
  67.         return $this->position;
  68.     }
  69.     public function setPosition(?int $position): self
  70.     {
  71.         $this->position $position;
  72.         return $this;
  73.     }
  74. }