src/Entity/WhyChooseUs.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\WhyChooseUsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=WhyChooseUsRepository::class)
  7.  */
  8. class WhyChooseUs
  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)
  18.      */
  19.     private $title;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $subTitle;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $title1;
  28.     /**
  29.      * @ORM\Column(type="text", nullable=true)
  30.      */
  31.     private $content1;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $icon1;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $title2;
  40.     /**
  41.      * @ORM\Column(type="text", nullable=true)
  42.      */
  43.     private $content2;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $icon2;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $title3;
  52.     /**
  53.      * @ORM\Column(type="text", nullable=true)
  54.      */
  55.     private $content3;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $icon3;
  60.     /**
  61.      * @ORM\Column(type="string", length=255, nullable=true)
  62.      */
  63.     private $title4;
  64.     /**
  65.      * @ORM\Column(type="string", length=255, nullable=true)
  66.      */
  67.     private $content4;
  68.     /**
  69.      * @ORM\Column(type="string", length=255, nullable=true)
  70.      */
  71.     private $icon4;
  72.     /**
  73.      * @ORM\Column(type="string", length=255, nullable=true)
  74.      */
  75.     private $title5;
  76.     /**
  77.      * @ORM\Column(type="string", length=255, nullable=true)
  78.      */
  79.     private $content5;
  80.     /**
  81.      * @ORM\Column(type="string", length=255, nullable=true)
  82.      */
  83.     private $icon5;
  84.     /**
  85.      * @ORM\Column(type="string", length=255, nullable=true)
  86.      */
  87.     private $title6;
  88.     /**
  89.      * @ORM\Column(type="string", length=255, nullable=true)
  90.      */
  91.     private $content6;
  92.     /**
  93.      * @ORM\Column(type="string", length=255, nullable=true)
  94.      */
  95.     private $icon6;
  96.     /**
  97.      * @ORM\Column(type="string", length=255, nullable=true)
  98.      */
  99.     private $title7;
  100.     /**
  101.      * @ORM\Column(type="string", length=255, nullable=true)
  102.      */
  103.     private $content7;
  104.     /**
  105.      * @ORM\Column(type="string", length=255, nullable=true)
  106.      */
  107.     private $icon7;
  108.     public function getId(): ?int
  109.     {
  110.         return $this->id;
  111.     }
  112.     public function getTitle(): ?string
  113.     {
  114.         return $this->title;
  115.     }
  116.     public function setTitle(string $title): self
  117.     {
  118.         $this->title $title;
  119.         return $this;
  120.     }
  121.     public function getSubTitle(): ?string
  122.     {
  123.         return $this->subTitle;
  124.     }
  125.     public function setSubTitle(?string $subTitle): self
  126.     {
  127.         $this->subTitle $subTitle;
  128.         return $this;
  129.     }
  130.     public function getTitle1(): ?string
  131.     {
  132.         return $this->title1;
  133.     }
  134.     public function setTitle1(?string $title1): self
  135.     {
  136.         $this->title1 $title1;
  137.         return $this;
  138.     }
  139.     public function getContent1(): ?string
  140.     {
  141.         return $this->content1;
  142.     }
  143.     public function setContent1(?string $content1): self
  144.     {
  145.         $this->content1 $content1;
  146.         return $this;
  147.     }
  148.     public function getIcon1(): ?string
  149.     {
  150.         return $this->icon1;
  151.     }
  152.     public function setIcon1(?string $icon1): self
  153.     {
  154.         $this->icon1 $icon1;
  155.         return $this;
  156.     }
  157.     public function getTitle2(): ?string
  158.     {
  159.         return $this->title2;
  160.     }
  161.     public function setTitle2(?string $title2): self
  162.     {
  163.         $this->title2 $title2;
  164.         return $this;
  165.     }
  166.     public function getContent2(): ?string
  167.     {
  168.         return $this->content2;
  169.     }
  170.     public function setContent2(?string $content2): self
  171.     {
  172.         $this->content2 $content2;
  173.         return $this;
  174.     }
  175.     public function getIcon2(): ?string
  176.     {
  177.         return $this->icon2;
  178.     }
  179.     public function setIcon2(?string $icon2): self
  180.     {
  181.         $this->icon2 $icon2;
  182.         return $this;
  183.     }
  184.     public function getTitle3(): ?string
  185.     {
  186.         return $this->title3;
  187.     }
  188.     public function setTitle3(?string $title3): self
  189.     {
  190.         $this->title3 $title3;
  191.         return $this;
  192.     }
  193.     public function getContent3(): ?string
  194.     {
  195.         return $this->content3;
  196.     }
  197.     public function setContent3(string $content3): self
  198.     {
  199.         $this->content3 $content3;
  200.         return $this;
  201.     }
  202.     public function getIcon3(): ?string
  203.     {
  204.         return $this->icon3;
  205.     }
  206.     public function setIcon3(?string $icon3): self
  207.     {
  208.         $this->icon3 $icon3;
  209.         return $this;
  210.     }
  211.     public function getTitle4(): ?string
  212.     {
  213.         return $this->title4;
  214.     }
  215.     public function setTitle4(?string $title4): self
  216.     {
  217.         $this->title4 $title4;
  218.         return $this;
  219.     }
  220.     public function getContent4(): ?string
  221.     {
  222.         return $this->content4;
  223.     }
  224.     public function setContent4(?string $content4): self
  225.     {
  226.         $this->content4 $content4;
  227.         return $this;
  228.     }
  229.     public function getIcon4(): ?string
  230.     {
  231.         return $this->icon4;
  232.     }
  233.     public function setIcon4(?string $icon4): self
  234.     {
  235.         $this->icon4 $icon4;
  236.         return $this;
  237.     }
  238.     public function getTitle5(): ?string
  239.     {
  240.         return $this->title5;
  241.     }
  242.     public function setTitle5(?string $title5): self
  243.     {
  244.         $this->title5 $title5;
  245.         return $this;
  246.     }
  247.     public function getContent5(): ?string
  248.     {
  249.         return $this->content5;
  250.     }
  251.     public function setContent5(?string $content5): self
  252.     {
  253.         $this->content5 $content5;
  254.         return $this;
  255.     }
  256.     public function getIcon5(): ?string
  257.     {
  258.         return $this->icon5;
  259.     }
  260.     public function setIcon5(?string $icon5): self
  261.     {
  262.         $this->icon5 $icon5;
  263.         return $this;
  264.     }
  265.     public function getTitle6(): ?string
  266.     {
  267.         return $this->title6;
  268.     }
  269.     public function setTitle6(?string $title6): self
  270.     {
  271.         $this->title6 $title6;
  272.         return $this;
  273.     }
  274.     public function getContent6(): ?string
  275.     {
  276.         return $this->content6;
  277.     }
  278.     public function setContent6(?string $content6): self
  279.     {
  280.         $this->content6 $content6;
  281.         return $this;
  282.     }
  283.     public function getIcon6(): ?string
  284.     {
  285.         return $this->icon6;
  286.     }
  287.     public function setIcon6(?string $icon6): self
  288.     {
  289.         $this->icon6 $icon6;
  290.         return $this;
  291.     }
  292.     public function getTitle7(): ?string
  293.     {
  294.         return $this->title7;
  295.     }
  296.     public function setTitle7(?string $title7): self
  297.     {
  298.         $this->title7 $title7;
  299.         return $this;
  300.     }
  301.     public function getContent7(): ?string
  302.     {
  303.         return $this->content7;
  304.     }
  305.     public function setContent7(?string $content7): self
  306.     {
  307.         $this->content7 $content7;
  308.         return $this;
  309.     }
  310.     public function getIcon7(): ?string
  311.     {
  312.         return $this->icon7;
  313.     }
  314.     public function setIcon7(?string $icon7): self
  315.     {
  316.         $this->icon7 $icon7;
  317.         return $this;
  318.     }
  319. }