From 84501f539a865448f7535fbc3a450ad5422b9dca Mon Sep 17 00:00:00 2001 From: Sachin Agarwal Date: Sun, 22 May 2016 15:04:05 +0530 Subject: [PATCH] Fixed Typo. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6d8c1ac..e5c3899 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ SKAgarwal\GoogleApi\ServiceProvider::class, ## Step 2 publish the config file with following artisan command ``` -php artisan vendor:publish --provider=SKAgarwal\GoogleApi\ServiceProvider +php artisan vendor:publish --provider="SKAgarwal\GoogleApi\ServiceProvider" ``` This will create **google.php** file in the config directory. @@ -91,7 +91,7 @@ Set the *API KEY* in this config file. Start using the package using Facade. ``` -$response = GooglePlaces::placesAutocomplete('some city'); +$response = GooglePlaces::placeAutocomplete('some city'); ``` ---