Total Complexity | 9 |
Total Lines | 51 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class StreamPreferenceList extends AbstractObject implements ObjectInterface |
||
8 | { |
||
9 | |||
10 | public function direction(): string |
||
11 | { |
||
12 | return $this->data->direction; |
||
13 | } |
||
14 | |||
15 | public function id(): string |
||
16 | { |
||
17 | return $this->data->id; |
||
18 | } |
||
19 | |||
20 | public function title(): string |
||
21 | { |
||
22 | return $this->data->title; |
||
23 | } |
||
24 | |||
25 | public function description(): string |
||
26 | { |
||
27 | return $this->data->description; |
||
28 | } |
||
29 | |||
30 | public function self() |
||
31 | { |
||
32 | return $this->data->self; |
||
33 | } |
||
34 | |||
35 | public function updated(): int |
||
36 | { |
||
37 | return $this->data->updated; |
||
38 | } |
||
39 | |||
40 | public function updatedUsec(): int |
||
41 | { |
||
42 | return $this->data->updatedUsec; |
||
43 | } |
||
44 | |||
45 | |||
46 | /** |
||
47 | * @return Item[] |
||
48 | */ |
||
49 | public function items(): array |
||
58 | } |
||
59 | } |
||
60 |