src/Entity/Info.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Info
  6.  *
  7.  * @ORM\Table(name="info", uniqueConstraints={@ORM\UniqueConstraint(name="info_id_uindex", columns={"id"})})
  8.  * @ORM\Entity
  9.  */
  10. class Info
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="title", type="string", length=255, nullable=true)
  24.      */
  25.     private $title;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="link", type="string", length=255, nullable=true)
  30.      */
  31.     private $link;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="content", type="string", length=65535, nullable=true)
  36.      */
  37.     private $content;
  38.     /**
  39.      * @var \DateTime
  40.      *
  41.      * @ORM\Column(name="date", type="datetime", nullable=true)
  42.      */
  43.     private $date;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="picture", type="string", length=255, nullable=true)
  48.      */
  49.     private $picture;
  50.     /**
  51.      * @var boolean
  52.      *
  53.      * @ORM\Column(name="enabled", type="boolean", nullable=true)
  54.      */
  55.     private $enabled true;
  56.     /**
  57.      * @return int
  58.      */
  59.     public function getId()
  60.     {
  61.         return $this->id;
  62.     }
  63.     /**
  64.      * @param int $id
  65.      */
  66.     public function setId($id)
  67.     {
  68.         $this->id $id;
  69.     }
  70.     /**
  71.      * @return string
  72.      */
  73.     public function getTitle()
  74.     {
  75.         return $this->title;
  76.     }
  77.     /**
  78.      * @param string $title
  79.      */
  80.     public function setTitle($title)
  81.     {
  82.         $this->title $title;
  83.     }
  84.     /**
  85.      * @return string
  86.      */
  87.     public function getLink()
  88.     {
  89.         return $this->link;
  90.     }
  91.     /**
  92.      * @param string $link
  93.      */
  94.     public function setLink($link)
  95.     {
  96.         $this->link $link;
  97.     }
  98.     /**
  99.      * @return string
  100.      */
  101.     public function getContent()
  102.     {
  103.         return $this->content;
  104.     }
  105.     /**
  106.      * @param string $content
  107.      */
  108.     public function setContent($content)
  109.     {
  110.         $this->content $content;
  111.     }
  112.     /**
  113.      * @return \DateTime
  114.      */
  115.     public function getDate()
  116.     {
  117.         return $this->date;
  118.     }
  119.     /**
  120.      * @param \DateTime $date
  121.      */
  122.     public function setDate($date)
  123.     {
  124.         $this->date $date;
  125.     }
  126.     /**
  127.      * @return string
  128.      */
  129.     public function getPicture()
  130.     {
  131.         return $this->picture;
  132.     }
  133.     /**
  134.      * @param string $picture
  135.      */
  136.     public function setPicture($picture)
  137.     {
  138.         $this->picture $picture;
  139.     }
  140.     /**
  141.      * @return bool
  142.      */
  143.     public function isEnabled()
  144.     {
  145.         return $this->enabled;
  146.     }
  147.     /**
  148.      * @param bool $enabled
  149.      */
  150.     public function setEnabled($enabled)
  151.     {
  152.         $this->enabled $enabled;
  153.     }
  154. }