feat: add workday endpoint

Added support for our latest endpoint, which calculates the workday a
given number of business days into the future from the given date for
the given country.
This commit is contained in:
Josh Sherman 2020-06-19 18:39:13 -05:00
parent b6fad34f19
commit 45ca80d846
4 changed files with 179 additions and 8 deletions

View file

@ -252,3 +252,16 @@ $holiday_api->holidays([
'year' => 2019,
]);
```
### Workday
#### Fetch workday 7 business days after a date
```php
<?php
$holiday_api->workday([
'country' => 'US',
'start' => '2019-07-01',
'days' => 7,
]);
```