Recursive call with array_map
<?php public function add($movie) { if (is_array($movie)) { return array_map([$this, 'add'], $movie); } $this->collection[] = $movie; }