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.     /**
  53.      * @ORM\Column(type="string", length=255, nullable=true)
  54.      */
  55.     private $photo;
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     /**
  61.      * @return mixed
  62.      */
  63.     public function getName()
  64.     {
  65.         return $this->name;
  66.     }
  67.     /**
  68.      * @param mixed $name
  69.      * @return Shop
  70.      */
  71.     public function setName($name)
  72.     {
  73.         $this->name $name;
  74.         return $this;
  75.     }
  76.     /**
  77.      * @return mixed
  78.      */
  79.     public function getLogo()
  80.     {
  81.         return $this->logo;
  82.     }
  83.     /**
  84.      * @param mixed $logo
  85.      * @return Shop
  86.      */
  87.     public function setLogo($logo)
  88.     {
  89.         $this->logo $logo;
  90.         return $this;
  91.     }
  92.     /**
  93.      * @return mixed
  94.      */
  95.     public function getPhone()
  96.     {
  97.         return $this->phone;
  98.     }
  99.     /**
  100.      * @param mixed $phone
  101.      * @return Shop
  102.      */
  103.     public function setPhone($phone)
  104.     {
  105.         $this->phone $phone;
  106.         return $this;
  107.     }
  108.     /**
  109.      * @return mixed
  110.      */
  111.     public function getMail()
  112.     {
  113.         return $this->mail;
  114.     }
  115.     /**
  116.      * @param mixed $mail
  117.      * @return Shop
  118.      */
  119.     public function setMail($mail)
  120.     {
  121.         $this->mail $mail;
  122.         return $this;
  123.     }
  124.     /**
  125.      * @return mixed
  126.      */
  127.     public function getLink()
  128.     {
  129.         return $this->link;
  130.     }
  131.     /**
  132.      * @param mixed $link
  133.      * @return Shop
  134.      */
  135.     public function setLink($link)
  136.     {
  137.         $this->link $link;
  138.         return $this;
  139.     }
  140.     /**
  141.      * @return mixed
  142.      */
  143.     public function getDescription()
  144.     {
  145.         return $this->description;
  146.     }
  147.     /**
  148.      * @param mixed $description
  149.      * @return Shop
  150.      */
  151.     public function setDescription($description)
  152.     {
  153.         $this->description $description;
  154.         return $this;
  155.     }
  156.     /**
  157.      * @return mixed
  158.      */
  159.     public function getSchedule()
  160.     {
  161.         return $this->schedule;
  162.     }
  163.     /**
  164.      * @param mixed $schedule
  165.      * @return Shop
  166.      */
  167.     public function setSchedule($schedule)
  168.     {
  169.         $this->schedule $schedule;
  170.         return $this;
  171.     }
  172.     /**
  173.      * @return mixed
  174.      */
  175.     public function getAccess()
  176.     {
  177.         return $this->access;
  178.     }
  179.     /**
  180.      * @param mixed $access
  181.      * @return Shop
  182.      */
  183.     public function setAccess($access)
  184.     {
  185.         $this->access $access;
  186.         return $this;
  187.     }
  188.     public function getSlug(): ?string
  189.     {
  190.         return $this->slug;
  191.     }
  192.     public function setSlug(?string $slug): self
  193.     {
  194.         $this->slug $slug;
  195.         return $this;
  196.     }
  197.     public function getPhoto()
  198.     {
  199.         return $this->photo;
  200.     }
  201.     public function setPhoto($photo): self
  202.     {
  203.         $this->photo $photo;
  204.         return $this;
  205.     }
  206. }