1 | <?php |
||
5 | class ReportTicket |
||
6 | { |
||
7 | |||
8 | use HydratableTrait; |
||
9 | |||
10 | /** @var int|null */ |
||
11 | protected $report_id; |
||
12 | |||
13 | /** @var bool */ |
||
14 | protected $cached; |
||
15 | |||
16 | /** |
||
17 | * @return int|null |
||
18 | */ |
||
19 | public function getReportId() |
||
23 | |||
24 | /** |
||
25 | * @param int|null $report_id |
||
26 | */ |
||
27 | public function setReportId($report_id) |
||
31 | |||
32 | /** |
||
33 | * @return bool |
||
34 | */ |
||
35 | public function getCached() |
||
39 | |||
40 | /** |
||
41 | * @param bool $cached |
||
42 | */ |
||
43 | public function setCached($cached) |
||
47 | } |
||
48 |