Passed
Branch master (d72b15)
by Jérémy
03:56
created
Category
PathHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 class PathHelper
6 6
 {
7 7
     const ROOT = '/specs';
8
-    const PATHS = self::ROOT.'/paths';
9
-    const DEFINITIONS = self::ROOT.'/definitions';
8
+    const PATHS = self::ROOT . '/paths';
9
+    const DEFINITIONS = self::ROOT . '/definitions';
10 10
 }
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
     function getRootPath(): string
5 5
     {
6 6
         $dir = $rootDir = __DIR__;
7
-        while (!file_exists($dir.'/composer.lock')) {
7
+        while (!file_exists($dir . '/composer.lock')) {
8 8
             $dir = \dirname($dir);
9 9
         }
10 10
 
Please login to merge, or discard this patch.