Author: Andrea Cristaudo (andrea.cristaudo@gmail.com)
Inheritance: extends AbstractHttpProvider, implements Geocoder\Provider\Provider
Esempio n. 1
0
 /**
  * @expectedException \Geocoder\Exception\UnsupportedOperation
  * @expectedExceptionMessage The GeoPlugin provider is not able to do reverse geocoding.
  */
 public function testReverse()
 {
     $provider = new GeoPlugin($this->getMockAdapter($this->never()));
     $provider->reverse(1, 2);
 }