Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 88.89% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class Calendars extends Availability |
||
8 | { |
||
9 | /** |
||
10 | * Retrieve daily availability |
||
11 | * Retrieve the instances for items across a date range. |
||
12 | * |
||
13 | * @param string $start_date The start date for the availability range |
||
14 | * @param string $end_date The end date for the availability range. |
||
15 | * @param array $item_ids Limit the availability results by item ids |
||
16 | * |
||
17 | * @return $this |
||
18 | */ |
||
19 | 1 | public function __invoke(string $start_date, string $end_date, array $item_ids = []): self |
|
41 |