1 | <?php |
||
7 | abstract class LogLine implements LogLineInterface |
||
8 | { |
||
9 | use TransportAwareTrait; |
||
10 | |||
11 | /** |
||
12 | * @var int |
||
13 | */ |
||
14 | protected $id; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $_log; |
||
20 | |||
21 | /** |
||
22 | * @var int |
||
23 | */ |
||
24 | protected $number; |
||
25 | |||
26 | /** |
||
27 | * @var bool |
||
28 | */ |
||
29 | protected $final; |
||
30 | |||
31 | /** |
||
32 | * @return int |
||
33 | */ |
||
34 | public function id() : int |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function log() : string |
||
46 | |||
47 | /** |
||
48 | * @return int |
||
49 | */ |
||
50 | public function number() : int |
||
54 | |||
55 | /** |
||
56 | * @return bool |
||
57 | */ |
||
58 | public function final() : bool |
||
62 | |||
63 | public function refresh() |
||
67 | } |
||
68 |