We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 474315b commit 02b6bf5Copy full SHA for 02b6bf5
CHANGELOG.md
@@ -9,7 +9,7 @@ n/a
9
0.3.0 (2014-04-13)
10
------------------
11
12
-* support provider's arugments
+* support provider's arugments (BC break)
13
14
15
0.2.0 (2013-11-16)
README.md
@@ -106,9 +106,10 @@ Example with Facade
106
// ...
107
try {
108
$geocode = Geocoder::geocode('10 rue Gambetta, Paris, France');
109
- // ...
+ // The GoogleMapsProvider will return a result
110
+ var_dump($geocode);
111
} catch (\Exception $e) {
- // Here we will get "The FreeGeoIpProvider does not support Street addresses." ;)
112
+ // No exception will be thrown here
113
echo $e->getMessage();
114
}
115
```
0 commit comments