Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | trait SpanInfoGetter |
||
12 | { |
||
13 | /** |
||
14 | * @return int |
||
15 | */ |
||
16 | public function getStartTime() : int |
||
17 | { |
||
18 | return $this->startAt; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @return int |
||
23 | */ |
||
24 | public function getFinishTime(): int |
||
25 | { |
||
26 | return $this->endAt; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @return array |
||
31 | */ |
||
32 | public function getTags() : array |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return array |
||
39 | */ |
||
40 | public function getLogs() : array |
||
43 | } |
||
44 | } |
||
45 |