@@ -5,6 +5,6 @@ |
||
| 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 | } |
@@ -4,7 +4,7 @@ |
||
| 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 | |