Passed
Push — master ( 8c7a21...873684 )
by IT
03:23
created
src/AppBundle/Controller/StreamController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
         }elseif ($fs->exists($lockFileLocation)) {
94 94
             $error = $this->get('translator')->trans('encoding.pending', [], 'stream');
95 95
             $this->flashMessage(ControllerUtilsTrait::$flashInfo, $error);
96
-        }elseif(!$fs->exists($playlistFileLocation)) {
96
+        }elseif (!$fs->exists($playlistFileLocation)) {
97 97
             $error = $this->get('translator')->trans('encoding.no-playlist', [], 'stream');
98 98
             $this->flashMessage(ControllerUtilsTrait::$flashDanger, $error);
99 99
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,10 +90,10 @@
 block discarded – undo
90 90
         if ($fs->exists($errorFileLocation)) {
91 91
             $error = $this->get('translator')->trans('encoding.error', [], 'stream');
92 92
             $this->flashMessage(ControllerUtilsTrait::$flashDanger, $error);
93
-        }elseif ($fs->exists($lockFileLocation)) {
93
+        } elseif ($fs->exists($lockFileLocation)) {
94 94
             $error = $this->get('translator')->trans('encoding.pending', [], 'stream');
95 95
             $this->flashMessage(ControllerUtilsTrait::$flashInfo, $error);
96
-        }elseif(!$fs->exists($playlistFileLocation)) {
96
+        } elseif(!$fs->exists($playlistFileLocation)) {
97 97
             $error = $this->get('translator')->trans('encoding.no-playlist', [], 'stream');
98 98
             $this->flashMessage(ControllerUtilsTrait::$flashDanger, $error);
99 99
         }
Please login to merge, or discard this patch.