Example #1
0
 /**
  * @return Movie[]
  */
 public function getMovies()
 {
     return $this->movies->toArray();
 }
Example #2
0
 /**
  * @param \Movies\Movie $movie
  */
 public function removeMovie(Movie $movie)
 {
     if ($this->movies->contains($movie)) {
         $this->movies->removeElement($movie);
     }
 }