Skip to content

Commit

Permalink
Added timeout to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danhstevens committed Mar 16, 2015
1 parent 3e8c1af commit 24a6cf1
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 @@ -53,6 +53,14 @@ $client = new Kickbox\Client('Your_API_Key_Here');
$kickbox = $client->kickbox();
$response = $kickbox->verify("test@example.com");
```
#### Options

**timeout** `integer` (optional) - Maximum time, in milliseconds, for the API to complete a verification request. Default: 6000.

```php
// Example with options
$response = $kickbox->verify("test@example.com", array('timeout' => 6000));
```

### Response information

Expand Down

0 comments on commit 24a6cf1

Please sign in to comment.