1 | <?php |
||
8 | class Invoice extends BaseClass |
||
9 | { |
||
10 | /** The URI of the action */ |
||
11 | const URI = 'https://api.signere.no/api/Invoice'; |
||
12 | |||
13 | /** |
||
14 | * Returns a list of invoice transactions for |
||
15 | * the given year / month combination. |
||
16 | * |
||
17 | * @param int $year |
||
18 | * @param int $month |
||
19 | * @return object |
||
20 | */ |
||
21 | 3 | public function get(int $year, int $month) |
|
41 | } |
||
42 |