Geocoder\Provider\GeoPlugin::getName PHP Method

getName() public method

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

Usage Example

Beispiel #1
0
 public function testgetName()
 {
     $provider = new GeoPlugin($this->getMockAdapter($this->never()));
     $this->assertEquals('geo_plugin', $provider->getName());
 }