Geocoder\Provider\GoogleMaps::getName PHP Method

getName() public method

{@inheritDoc}
public getName ( )
    public function getName()
    {
        return 'google_maps';
    }

Usage Example

Exemplo n.º 1
0
 public function testGetName()
 {
     $provider = new GoogleMaps($this->getMockAdapter($this->never()));
     $this->assertEquals('google_maps', $provider->getName());
 }