src/Entity/Line.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Line
  6.  *
  7.  * @ORM\Table(name="line")
  8.  * @ORM\Entity(repositoryClass="App\Repository\LineRepository")
  9.  */
  10. class Line
  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="name", type="string", length=255)
  24.      */
  25.     private $name;
  26.     /**
  27.     * @ORM\ManyToOne(targetEntity="Network", inversedBy="lines")
  28.     * @ORM\JoinColumn(name="network_id", referencedColumnName="id")
  29.     */
  30.     private $network;
  31.     /**
  32.     * @ORM\OneToMany(targetEntity="Stop", mappedBy="line")
  33.     */
  34.     private $stops;
  35.     public function __toString()
  36.     {
  37.         return $this->name;
  38.     }
  39.     /**
  40.      * Get id
  41.      *
  42.      * @return int
  43.      */
  44.     public function getId()
  45.     {
  46.         return $this->id;
  47.     }
  48.     /**
  49.      * Set name
  50.      *
  51.      * @param string $name
  52.      *
  53.      * @return Line
  54.      */
  55.     public function setName($name)
  56.     {
  57.         $this->name $name;
  58.         return $this;
  59.     }
  60.     /**
  61.      * Get name
  62.      *
  63.      * @return string
  64.      */
  65.     public function getName()
  66.     {
  67.         return $this->name;
  68.     }
  69.     /**
  70.      * Set network
  71.      *
  72.      * @param \App\Entity\Network $network
  73.      *
  74.      * @return Line
  75.      */
  76.     public function setNetwork(\App\Entity\Network $network null)
  77.     {
  78.         $this->network $network;
  79.         return $this;
  80.     }
  81.     /**
  82.      * Get network
  83.      *
  84.      * @return \App\Entity\Network
  85.      */
  86.     public function getNetwork()
  87.     {
  88.         return $this->network;
  89.     }
  90.     /**
  91.      * Constructor
  92.      */
  93.     public function __construct()
  94.     {
  95.         $this->stops = new \Doctrine\Common\Collections\ArrayCollection();
  96.     }
  97.     /**
  98.      * Add stop
  99.      *
  100.      * @param \App\Entity\Stop $stop
  101.      *
  102.      * @return Line
  103.      */
  104.     public function addStop(\App\Entity\Stop $stop)
  105.     {
  106.         $this->stops[] = $stop;
  107.         return $this;
  108.     }
  109.     /**
  110.      * Remove stop
  111.      *
  112.      * @param \App\Entity\Stop $stop
  113.      */
  114.     public function removeStop(\App\Entity\Stop $stop)
  115.     {
  116.         $this->stops->removeElement($stop);
  117.     }
  118.     /**
  119.      * Get stops
  120.      *
  121.      * @return \Doctrine\Common\Collections\Collection
  122.      */
  123.     public function getStops()
  124.     {
  125.         return $this->stops;
  126.     }
  127. }