aleevas
12/22/2018 - 9:50 AM

Recursive call with array_map

Recursive call with array_map

<?php

    public function add($movie)
    {
        if (is_array($movie))
        {
            return array_map([$this, 'add'], $movie);
        }
        $this->collection[] = $movie;
    }