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