1 | <?php |
||
10 | class StreamView |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $playoutUrl; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $videoPlayer; |
||
21 | |||
22 | /** |
||
23 | * StreamView constructor. |
||
24 | * @param $data |
||
25 | */ |
||
26 | public function __construct($data) |
||
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | public function getPlayoutUrl() |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getVideoPlayer() |
||
47 | |||
48 | } |