Passed
Push — main ( a7294a...cb4e4e )
by Sammy
08:21 queued 01:31
created
FileSystem.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,9 @@
 block discarded – undo
27 27
     function __construct(string $rootPath)
28 28
     {
29 29
         $rootPath = realpath($rootPath);
30
-        if (!$rootPath)
31
-            throw new \InvalidArgumentException('INVALID_ROOT_PATH');
30
+        if (!$rootPath) {
31
+                    throw new \InvalidArgumentException('INVALID_ROOT_PATH');
32
+        }
32 33
 
33 34
         $this->rootPath = $rootPath;
34 35
     }
Please login to merge, or discard this patch.