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