Example #1
0
 /**
  * Adds a City.
  *
  * @param City $city
  * @return $this For fluid purposes.
  */
 public function addCity(\Seh\Bundle\SehBundle\Entity\City $city)
 {
     if (!$this->cities->contains($city)) {
         $this->cities->add($city);
     }
     return $this;
 }