* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ namespace Chill\MainBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; /** * @ORM\Entity(repositoryClass="Chill\MainBundle\Repository\CenterRepository") * @ORM\Table(name="centers") * * @author Julien Fastré */ class Center implements HasCenterInterface { /** * @var integer * * @ORM\Id * @ORM\Column(name="id", type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var string * * @ORM\Column(type="string", length=255) */ private $name; /** * @var Collection * * @ORM\OneToMany( * targetEntity="Chill\MainBundle\Entity\GroupCenter", * mappedBy="center" * ) */ private $groupCenters; /** * Center constructor. */ public function __construct() { $this->groupCenters = new \Doctrine\Common\Collections\ArrayCollection(); } /** * @return string */ public function getName() { return $this->name; } /** * @param $name * @return $this */ public function setName($name) { $this->name = $name; return $this; } /** * @return int */ public function getId() { return $this->id; } /** * @return ArrayCollection|Collection */ public function getGroupCenters() { return $this->groupCenters; } /** * @param GroupCenter $groupCenter * @return $this */ public function addGroupCenter(GroupCenter $groupCenter) { $this->groupCenters->add($groupCenter); return $this; } /** * @return string */ public function __toString() { return $this->getName(); } /** * @return $this|Center */ public function getCenter() { return $this; } }