AssetManager\Resolver\MapResolver::getMap PHP Method

getMap() public method

Retrieve the map
public getMap ( ) : array
return array
    public function getMap()
    {
        return $this->map;
    }

Usage Example

 public function testGetMap()
 {
     $resolver = new MapResolver();
     $this->assertSame(array(), $resolver->getMap());
 }