1 | <?php |
||
9 | class MonthlyBillableQuery |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | private $month; |
||
16 | |||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | private $year; |
||
21 | |||
22 | /** |
||
23 | * @param int $month |
||
24 | * @param int $year |
||
25 | */ |
||
26 | public function __construct($month, $year) |
||
31 | |||
32 | /** |
||
33 | * @return int |
||
34 | */ |
||
35 | public function getMonth() |
||
39 | |||
40 | /** |
||
41 | * @return int |
||
42 | */ |
||
43 | public function getYear() |
||
47 | } |