src/Entity/Task.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Task
  6.  *
  7.  * @ORM\Table(name="task")
  8.  * @ORM\Entity(repositoryClass="App\Repository\TaskRepository")
  9.  */
  10. class Task
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="title", type="string", length=255)
  24.      */
  25.     private $title;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="text", type="text")
  30.      */
  31.     private $text;
  32.     /**
  33.     * @ORM\ManyToMany(targetEntity="User")
  34.     */
  35.     private $users;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      * @var \DateTime
  39.      */
  40.     private $start;
  41.     /**
  42.      * @ORM\Column(type="datetime")
  43.      * @var \DateTime
  44.      */
  45.     private $end;
  46.     /**
  47.      * Get id
  48.      *
  49.      * @return int
  50.      */
  51.     public function getId()
  52.     {
  53.         return $this->id;
  54.     }
  55.     /**
  56.      * Set title
  57.      *
  58.      * @param string $title
  59.      *
  60.      * @return Task
  61.      */
  62.     public function setTitle($title)
  63.     {
  64.         $this->title $title;
  65.         return $this;
  66.     }
  67.     /**
  68.      * Get title
  69.      *
  70.      * @return string
  71.      */
  72.     public function getTitle()
  73.     {
  74.         return $this->title;
  75.     }
  76.     /**
  77.      * Set text
  78.      *
  79.      * @param string $text
  80.      *
  81.      * @return Task
  82.      */
  83.     public function setText($text)
  84.     {
  85.         $this->text $text;
  86.         return $this;
  87.     }
  88.     /**
  89.      * Get text
  90.      *
  91.      * @return string
  92.      */
  93.     public function getText()
  94.     {
  95.         return $this->text;
  96.     }
  97.     /**
  98.      * Constructor
  99.      */
  100.     public function __construct()
  101.     {
  102.         $this->users = new \Doctrine\Common\Collections\ArrayCollection();
  103.     }
  104.     /**
  105.      * Add user
  106.      *
  107.      * @param \App\Entity\User $user
  108.      *
  109.      * @return Task
  110.      */
  111.     public function addUser(\App\Entity\User $user)
  112.     {
  113.         $this->users[] = $user;
  114.         return $this;
  115.     }
  116.     /**
  117.      * Remove user
  118.      *
  119.      * @param \App\Entity\User $user
  120.      */
  121.     public function removeUser(\App\Entity\User $user)
  122.     {
  123.         $this->users->removeElement($user);
  124.     }
  125.     /**
  126.      * Get users
  127.      *
  128.      * @return \Doctrine\Common\Collections\Collection
  129.      */
  130.     public function getUsers()
  131.     {
  132.         return $this->users;
  133.     }
  134.     /**
  135.      * Set start
  136.      *
  137.      * @param \DateTime $start
  138.      *
  139.      * @return Task
  140.      */
  141.     public function setStart($start)
  142.     {
  143.         $this->start $start;
  144.         return $this;
  145.     }
  146.     /**
  147.      * Get start
  148.      *
  149.      * @return \DateTime
  150.      */
  151.     public function getStart()
  152.     {
  153.         return $this->start;
  154.     }
  155.     /**
  156.      * Set end
  157.      *
  158.      * @param \DateTime $end
  159.      *
  160.      * @return Task
  161.      */
  162.     public function setEnd($end)
  163.     {
  164.         $this->end $end;
  165.         return $this;
  166.     }
  167.     /**
  168.      * Get end
  169.      *
  170.      * @return \DateTime
  171.      */
  172.     public function getEnd()
  173.     {
  174.         return $this->end;
  175.     }
  176. }