src/Entity/Shop.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ShopRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ShopRepository::class)
  7.  */
  8. class Shop
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255, nullable=false)
  18.      */
  19.     private $name;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.     */
  23.     private $logo;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $phone;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $mail;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $link;
  36.     /**
  37.      * @ORM\Column(type="text", nullable=true)
  38.      */
  39.     private $description;
  40.     /**
  41.      * @ORM\Column(type="text", nullable=true)
  42.      */
  43.     private $schedule;
  44.     /**
  45.      * @ORM\Column(type="text", nullable=true)
  46.      */
  47.     private $access;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $slug;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     /**
  57.      * @return mixed
  58.      */
  59.     public function getName()
  60.     {
  61.         return $this->name;
  62.     }
  63.     /**
  64.      * @param mixed $name
  65.      * @return Shop
  66.      */
  67.     public function setName($name)
  68.     {
  69.         $this->name $name;
  70.         return $this;
  71.     }
  72.     /**
  73.      * @return mixed
  74.      */
  75.     public function getLogo()
  76.     {
  77.         return $this->logo;
  78.     }
  79.     /**
  80.      * @param mixed $logo
  81.      * @return Shop
  82.      */
  83.     public function setLogo($logo)
  84.     {
  85.         $this->logo $logo;
  86.         return $this;
  87.     }
  88.     /**
  89.      * @return mixed
  90.      */
  91.     public function getPhone()
  92.     {
  93.         return $this->phone;
  94.     }
  95.     /**
  96.      * @param mixed $phone
  97.      * @return Shop
  98.      */
  99.     public function setPhone($phone)
  100.     {
  101.         $this->phone $phone;
  102.         return $this;
  103.     }
  104.     /**
  105.      * @return mixed
  106.      */
  107.     public function getMail()
  108.     {
  109.         return $this->mail;
  110.     }
  111.     /**
  112.      * @param mixed $mail
  113.      * @return Shop
  114.      */
  115.     public function setMail($mail)
  116.     {
  117.         $this->mail $mail;
  118.         return $this;
  119.     }
  120.     /**
  121.      * @return mixed
  122.      */
  123.     public function getLink()
  124.     {
  125.         return $this->link;
  126.     }
  127.     /**
  128.      * @param mixed $link
  129.      * @return Shop
  130.      */
  131.     public function setLink($link)
  132.     {
  133.         $this->link $link;
  134.         return $this;
  135.     }
  136.     /**
  137.      * @return mixed
  138.      */
  139.     public function getDescription()
  140.     {
  141.         return $this->description;
  142.     }
  143.     /**
  144.      * @param mixed $description
  145.      * @return Shop
  146.      */
  147.     public function setDescription($description)
  148.     {
  149.         $this->description $description;
  150.         return $this;
  151.     }
  152.     /**
  153.      * @return mixed
  154.      */
  155.     public function getSchedule()
  156.     {
  157.         return $this->schedule;
  158.     }
  159.     /**
  160.      * @param mixed $schedule
  161.      * @return Shop
  162.      */
  163.     public function setSchedule($schedule)
  164.     {
  165.         $this->schedule $schedule;
  166.         return $this;
  167.     }
  168.     /**
  169.      * @return mixed
  170.      */
  171.     public function getAccess()
  172.     {
  173.         return $this->access;
  174.     }
  175.     /**
  176.      * @param mixed $access
  177.      * @return Shop
  178.      */
  179.     public function setAccess($access)
  180.     {
  181.         $this->access $access;
  182.         return $this;
  183.     }
  184.     public function getSlug(): ?string
  185.     {
  186.         return $this->slug;
  187.     }
  188.     public function setSlug(?string $slug): self
  189.     {
  190.         $this->slug $slug;
  191.         return $this;
  192.     }
  193. }