Passed
Push — master ( 5c0c69...46ba0d )
by Georgi
03:26
created
src/Controllers/ModuleController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 			}
33 33
 		}
34 34
 
35
-		if (! $view) abort(404);
35
+		if (!$view) abort(404);
36 36
 
37 37
 		$epesi->add($view)->displayModuleContent($method, $args);
38 38
 		
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,9 @@
 block discarded – undo
32 32
 			}
33 33
 		}
34 34
 
35
-		if (! $view) abort(404);
35
+		if (! $view) {
36
+			abort(404);
37
+		}
36 38
 
37 39
 		$epesi->add($view)->displayModuleContent($method, $args);
38 40
 		
Please login to merge, or discard this patch.