Total Complexity | 10 |
Total Lines | 55 |
Duplicated Lines | 0 % |
Coverage | 90.48% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class StreamContents extends AbstractObject implements ObjectInterface |
||
8 | { |
||
9 | |||
10 | 3 | public function direction(): string |
|
13 | } |
||
14 | |||
15 | 3 | public function id(): string |
|
18 | } |
||
19 | |||
20 | 3 | public function title(): string |
|
23 | } |
||
24 | |||
25 | public function description(): string |
||
26 | { |
||
27 | return $this->data->description; |
||
28 | } |
||
29 | |||
30 | 3 | public function self(): ItemSelf |
|
31 | { |
||
32 | 3 | return new ItemSelf($this->data->self); |
|
33 | } |
||
34 | |||
35 | 3 | public function updated(): int |
|
36 | { |
||
37 | 3 | return $this->data->updated; |
|
38 | } |
||
39 | |||
40 | 3 | public function updatedUsec(): string |
|
41 | { |
||
42 | 3 | return $this->data->updatedUsec; |
|
43 | } |
||
44 | |||
45 | 3 | public function continuation(): ?string |
|
48 | } |
||
49 | |||
50 | /** |
||
51 | * @return Item[] |
||
52 | */ |
||
53 | 3 | public function items(): array |
|
62 | } |
||
63 | } |
||
64 |