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 | // @codingStandardsIgnoreStart |
||
20 | protected $_log; |
||
21 | // @codingStandardsIgnoreEnd |
||
22 | |||
23 | /** |
||
24 | * @var int |
||
25 | */ |
||
26 | protected $number; |
||
27 | |||
28 | /** |
||
29 | * @var bool |
||
30 | */ |
||
31 | protected $final; |
||
32 | |||
33 | /** |
||
34 | * @return int |
||
35 | */ |
||
36 | public function id() : int |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function log() : string |
||
48 | |||
49 | /** |
||
50 | * @return int |
||
51 | */ |
||
52 | public function number() : int |
||
56 | |||
57 | /** |
||
58 | * @return bool |
||
59 | */ |
||
60 | public function final() : bool |
||
64 | |||
65 | public function refresh() |
||
69 | } |
||
70 |