Skip to content

Commit

Permalink
Update documentation to highlight actionLink support
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenmaguire committed Mar 28, 2016
1 parent eabd0bf commit 3bf3f8e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ $results = $client->searchByPhone(array('phone' => '867-5309'));
$results = $client->getBusiness('union-chicago-3');
```

You may include [action links](http://engineeringblog.yelp.com/2015/07/yelp-api-now-returns-action-links.html) in your results by passing additional parameters with your request.

```php
$resultsWithActionLinks = $client->getBusiness('union-chicago-3', [
'actionLinks' => true
]);
```

### Configure defaults

```php
Expand Down

0 comments on commit 3bf3f8e

Please sign in to comment.