| 1 | <?php |
||
| 11 | class BillableFlightQuery |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var boolean |
||
| 16 | */ |
||
| 17 | private $includeTotal; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | private $fiscalYear; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param bool $includeTotal |
||
| 26 | * @param int $fiscalYear |
||
| 27 | */ |
||
| 28 | public function __construct($includeTotal = true, $fiscalYear = 0) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | public function isIncludeTotal() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return int |
||
| 44 | */ |
||
| 45 | public function getFiscalYear() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return bool |
||
| 52 | */ |
||
| 53 | public function hasYear() |
||
| 57 | |||
| 58 | } |