src/Entity/JobLink.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobLink
  5. {
  6.     /**
  7.      * @var int
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var string
  12.      */
  13.     private $url;
  14.     /**
  15.      * @var string
  16.      */
  17.     private $title;
  18.     /**
  19.      * @var int
  20.      */
  21.     private $start;
  22.     /**
  23.      * @var int
  24.      */
  25.     private $end;
  26.     /**
  27.      * Get id.
  28.      *
  29.      * @return int
  30.      */
  31.     public function getId()
  32.     {
  33.         return $this->id;
  34.     }
  35.     /**
  36.      * Set url.
  37.      *
  38.      * @param string $url
  39.      *
  40.      * @return JobLink
  41.      */
  42.     public function setUrl($url)
  43.     {
  44.         $this->url $url;
  45.         return $this;
  46.     }
  47.     /**
  48.      * Get url.
  49.      *
  50.      * @return string
  51.      */
  52.     public function getUrl()
  53.     {
  54.         return $this->url;
  55.     }
  56.     /**
  57.      * Set title.
  58.      *
  59.      * @param string $title
  60.      *
  61.      * @return JobLink
  62.      */
  63.     public function setTitle($title)
  64.     {
  65.         $this->title $title;
  66.         return $this;
  67.     }
  68.     /**
  69.      * Get title.
  70.      *
  71.      * @return string
  72.      */
  73.     public function getTitle()
  74.     {
  75.         return $this->title;
  76.     }
  77.     /**
  78.      * Set start.
  79.      *
  80.      * @param int $start
  81.      *
  82.      * @return JobLink
  83.      */
  84.     public function setStart($start)
  85.     {
  86.         $this->start $start;
  87.         return $this;
  88.     }
  89.     /**
  90.      * Get start.
  91.      *
  92.      * @return int
  93.      */
  94.     public function getStart()
  95.     {
  96.         return $this->start;
  97.     }
  98.     /**
  99.      * Set end.
  100.      *
  101.      * @param int $end
  102.      *
  103.      * @return JobLink
  104.      */
  105.     public function setEnd($end)
  106.     {
  107.         $this->end $end;
  108.         return $this;
  109.     }
  110.     /**
  111.      * Get end.
  112.      *
  113.      * @return int
  114.      */
  115.     public function getEnd()
  116.     {
  117.         return $this->end;
  118.     }
  119.     /**
  120.      * @var string
  121.      */
  122.     private $titleFrontend;
  123.     /**
  124.      * @var string
  125.      */
  126.     private $titleBackend;
  127.     /**
  128.      * Set titleFrontend.
  129.      *
  130.      * @param string $titleFrontend
  131.      *
  132.      * @return JobLink
  133.      */
  134.     public function setTitleFrontend($titleFrontend)
  135.     {
  136.         $this->titleFrontend $titleFrontend;
  137.         return $this;
  138.     }
  139.     /**
  140.      * Get titleFrontend.
  141.      *
  142.      * @return string
  143.      */
  144.     public function getTitleFrontend()
  145.     {
  146.         return $this->titleFrontend;
  147.     }
  148.     /**
  149.      * Set titleBackend.
  150.      *
  151.      * @param string $titleBackend
  152.      *
  153.      * @return JobLink
  154.      */
  155.     public function setTitleBackend($titleBackend)
  156.     {
  157.         $this->titleBackend $titleBackend;
  158.         return $this;
  159.     }
  160.     /**
  161.      * Get titleBackend.
  162.      *
  163.      * @return string
  164.      */
  165.     public function getTitleBackend()
  166.     {
  167.         return $this->titleBackend;
  168.     }
  169. }