| 1 | <?php |
||
| 5 | class Statistics extends BaseClass |
||
| 6 | { |
||
| 7 | /** The URI of the action */ |
||
| 8 | const URI = 'https://api.signere.no/api/Statistics'; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Returns a statistics response object with various information. |
||
| 12 | * |
||
| 13 | * @param int|null $year |
||
| 14 | * @param int|null $month |
||
| 15 | * @param int|null $day |
||
| 16 | * @param string $status |
||
| 17 | * @return object |
||
| 18 | */ |
||
| 19 | 1 | public function get(int $year = null, int $month = null, int $day = null, string $status = 'All') |
|
| 42 | } |
||
| 43 |