Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class RTMPKey extends Resource |
||
8 | { |
||
9 | /** |
||
10 | * Get RTMP Key ID. |
||
11 | * |
||
12 | * @return string|null |
||
13 | */ |
||
14 | public function getId(): ?string |
||
15 | { |
||
16 | return $this->data->id ?? null; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Get RTMP Key URL. |
||
21 | * |
||
22 | * @return string|null |
||
23 | */ |
||
24 | public function getUrl(): ?string |
||
27 | } |
||
28 | } |
||
29 |