Example #1
0
 /**
  * Add song
  *
  * @param \AppBundle\Entity\Song $song
  *
  * @return Album
  */
 public function addSong(\AppBundle\Entity\Song $song)
 {
     $this->songs[] = $song;
     $song->setAlbum($this);
     return $this;
 }