-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c6928a
commit 6b570b5
Showing
4 changed files
with
89 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
namespace Geocoder\Exception; | ||
|
||
class CollectionIsEmpty extends \RuntimeException implements Exception | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
tests/.cached_responses/c7b4c0eac1b73b7eb7be01c558f330415f7ea0d6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
s:1907:"{ | ||
"results" : [ | ||
{ | ||
"address_components" : [ | ||
{ | ||
"long_name" : "10", | ||
"short_name" : "10", | ||
"types" : [ "street_number" ] | ||
}, | ||
{ | ||
"long_name" : "Avenue Gambetta", | ||
"short_name" : "Avenue Gambetta", | ||
"types" : [ "route" ] | ||
}, | ||
{ | ||
"long_name" : "Paris", | ||
"short_name" : "Paris", | ||
"types" : [ "locality", "political" ] | ||
}, | ||
{ | ||
"long_name" : "Paris", | ||
"short_name" : "75", | ||
"types" : [ "administrative_area_level_2", "political" ] | ||
}, | ||
{ | ||
"long_name" : "Île-de-France", | ||
"short_name" : "IDF", | ||
"types" : [ "administrative_area_level_1", "political" ] | ||
}, | ||
{ | ||
"long_name" : "France", | ||
"short_name" : "FR", | ||
"types" : [ "country", "political" ] | ||
}, | ||
{ | ||
"long_name" : "75020", | ||
"short_name" : "75020", | ||
"types" : [ "postal_code" ] | ||
} | ||
], | ||
"formatted_address" : "10 Avenue Gambetta, 75020 Paris, France", | ||
"geometry" : { | ||
"location" : { | ||
"lat" : 48.8631013, | ||
"lng" : 2.3888086 | ||
}, | ||
"location_type" : "ROOFTOP", | ||
"viewport" : { | ||
"northeast" : { | ||
"lat" : 48.8644502802915, | ||
"lng" : 2.390157580291502 | ||
}, | ||
"southwest" : { | ||
"lat" : 48.8617523197085, | ||
"lng" : 2.387459619708498 | ||
} | ||
} | ||
}, | ||
"place_id" : "ChIJ4b303vJt5kcRF9AQdh4ZjWc", | ||
"types" : [ "street_address" ] | ||
} | ||
], | ||
"status" : "OK" | ||
} | ||
"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters