src/Entity/Network.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Network
  6.  *
  7.  * @ORM\Table(name="network")
  8.  * @ORM\Entity(repositoryClass="App\Repository\NetworkRepository")
  9.  */
  10. class Network
  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\OneToMany(targetEntity="Line", mappedBy="network")
  28.     */
  29.     private $lines;
  30.     public function __toString()
  31.     {
  32.         return $this->name;
  33.     }
  34.     /**
  35.      * Get id
  36.      *
  37.      * @return int
  38.      */
  39.     public function getId()
  40.     {
  41.         return $this->id;
  42.     }
  43.     /**
  44.      * Set name
  45.      *
  46.      * @param string $name
  47.      *
  48.      * @return Network
  49.      */
  50.     public function setName($name)
  51.     {
  52.         $this->name $name;
  53.         return $this;
  54.     }
  55.     /**
  56.      * Get name
  57.      *
  58.      * @return string
  59.      */
  60.     public function getName()
  61.     {
  62.         return $this->name;
  63.     }
  64.     /**
  65.      * Constructor
  66.      */
  67.     public function __construct()
  68.     {
  69.         $this->lines = new \Doctrine\Common\Collections\ArrayCollection();
  70.     }
  71.     /**
  72.      * Add line
  73.      *
  74.      * @param \App\Entity\Line $line
  75.      *
  76.      * @return Network
  77.      */
  78.     public function addLine(\App\Entity\Line $line)
  79.     {
  80.         $this->lines[] = $line;
  81.         return $this;
  82.     }
  83.     /**
  84.      * Remove line
  85.      *
  86.      * @param \App\Entity\Line $line
  87.      */
  88.     public function removeLine(\App\Entity\Line $line)
  89.     {
  90.         $this->lines->removeElement($line);
  91.     }
  92.     /**
  93.      * Get lines
  94.      *
  95.      * @return \Doctrine\Common\Collections\Collection
  96.      */
  97.     public function getLines()
  98.     {
  99.         return $this->lines;
  100.     }
  101. }