Author: William Durand (william.durand1@gmail.com)
Inheritance: extends Geocoder\Provider\AbstractProvider, implements Geocoder\Provider\Provider
Exemple #1
0
 /**
  * @expectedException \Geocoder\Exception\UnsupportedOperation
  * @expectedExceptionMessage The Geoip provider is not able to do reverse geocoding.
  */
 public function testReverse()
 {
     $provider = new Geoip();
     $provider->reverse(1, 2);
 }