| Total Complexity | 8 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 7 | class Subscription extends AbstractObject implements ObjectInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | public function id(): string |
||
| 11 | { |
||
| 12 | return $this->data->id; |
||
| 13 | } |
||
| 14 | |||
| 15 | public function title(): string |
||
| 16 | { |
||
| 17 | return $this->data->title; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function categories(): array |
||
| 21 | { |
||
| 22 | return $this->data->categories; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function sortId(): string |
||
| 28 | } |
||
| 29 | |||
| 30 | public function firstItemMsec(): string |
||
| 31 | { |
||
| 32 | return $this->data->firstitemmsec; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function url(): string |
||
| 36 | { |
||
| 37 | return $this->data->url; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function htmlUrl(): string |
||
| 43 | } |
||
| 44 | |||
| 45 | public function iconUrl(): string |
||
| 48 | } |
||
| 49 | |||
| 50 | |||
| 51 | } |
||
| 52 |