Elgg\ClassMap::mergeMap PHP Method

mergeMap() public method

Merge a class map with the current map
public mergeMap ( array $map ) : ClassMap
$map array array with keys being class/interface/trait names and values the absolute file paths that define them
return ClassMap
    public function mergeMap(array $map)
    {
        $this->map = array_merge($this->map, $map);
        return $this;
    }