reverse() public method

{@inheritDoc}
public reverse ( $latitude, $longitude )
Esempio n. 1
0
 /**
  * @expectedException \Geocoder\Exception\UnsupportedOperation
  * @expectedExceptionMessage The MaxMindBinary is not able to do reverse geocoding.
  */
 public function testThrowOnReverseMethodUsage()
 {
     $provider = new MaxMindBinary($this->binaryFile);
     $provider->reverse(0, 0);
 }