| Total Complexity | 9 |
| Total Lines | 52 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 7 | class StreamContents extends AbstractObject implements ObjectInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | public function direction(): string |
||
| 13 | } |
||
| 14 | |||
| 15 | public function id(): string |
||
| 18 | } |
||
| 19 | |||
| 20 | public function title(): string |
||
| 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 |
||
| 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 |
||
| 59 | } |
||
| 60 | |||
| 61 | } |
||
| 62 |