Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
46 | public function __construct($data) |
||
47 | { |
||
48 | $this->name = $data['streamName']; |
||
49 | $this->uuid = $data['uuid']; |
||
50 | $this->status = $data['status']; |
||
51 | $this->enabled = (boolean)$data['enabled']; |
||
52 | $this->viewable = (boolean)$data['viewable']; |
||
53 | $this->view = new StreamView($data['view']); |
||
54 | } |
||
55 | |||
103 | } |