From b20aecf795501d66b68aa051c39e85ef948a13f8 Mon Sep 17 00:00:00 2001 From: Karl Hughes Date: Tue, 17 Jan 2017 16:26:42 -0600 Subject: [PATCH] Updating usage --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0f14196..ed7b07a 100644 --- a/README.md +++ b/README.md @@ -29,15 +29,15 @@ Or via the "set" method. All of the parameters documented in Indeed's documentat ```php // Add parameters via the set() method -$query->set('q', 'engineering'); +$query->set('search_string', 'zend'); ``` You can even chain them if you'd like. ```php // Add parameters via the set() method -$query->set('l', 'Chicago, IL') - ->set('pg', '2'); +$query->set('country_code', 'us') + ->set('search_string', 'laravel'); ``` Then inject the query object into the provider.