Skip to content

Commit

Permalink
Added timeout to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danhstevens authored and schaitanya committed Mar 16, 2015
1 parent a613144 commit e0ef586
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 @@ -59,6 +59,14 @@ catch (Exception $e) {
echo "Code: " . $e->getCode() . " Message: " . $e->getMessage();
}
```
#### 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 e0ef586

Please sign in to comment.