Completed
Push — master ( 268a1d...c551a7 )
by
unknown
03:38
created
src/VideoPublisher/Domain/Stream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@
 block discarded – undo
48 48
         $this->name = $data['streamName'];
49 49
         $this->uuid = $data['uuid'];
50 50
         $this->status = $data['status'];
51
-        $this->enabled = (boolean)$data['enabled'];
52
-        $this->viewable = (boolean)$data['viewable'];
51
+        $this->enabled = (boolean) $data['enabled'];
52
+        $this->viewable = (boolean) $data['viewable'];
53 53
         $this->view = new StreamView($data['view']);
54 54
     }
55 55
 
Please login to merge, or discard this patch.
src/VideoPublisher/Domain/SimpleStream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $this->name = $data['streamName'];
39 39
         $this->uuid = $data['uuid'];
40 40
         $this->status = $data['status'];
41
-        $this->enabled = (boolean)$data['enabled'];
41
+        $this->enabled = (boolean) $data['enabled'];
42 42
     }
43 43
 
44 44
     /**
Please login to merge, or discard this patch.