1 | <?php |
||
8 | class ReportTicket |
||
9 | { |
||
10 | |||
11 | use HydratableTrait; |
||
12 | |||
13 | /** @var int */ |
||
14 | protected $report_id; |
||
15 | |||
16 | /** @var string */ |
||
17 | protected $cached; |
||
18 | |||
19 | /** |
||
20 | * @return int |
||
21 | */ |
||
22 | public function getReportId() |
||
26 | |||
27 | /** |
||
28 | * @param int $report_id |
||
29 | */ |
||
30 | public function setReportId($report_id) |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getCached() |
||
42 | |||
43 | /** |
||
44 | * @param string $cached |
||
45 | */ |
||
46 | public function setCached($cached) |
||
50 | } |
||
51 |