@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | return (new Filesystem())->isAbsolutePath($path) |
21 | 21 | ? $path |
22 | - : $basePath . '/' . $path; |
|
22 | + : $basePath.'/'.$path; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -38,7 +38,7 @@ |
||
38 | 38 | try { |
39 | 39 | FileHelper::ensureFileIsWritable($cachePath); |
40 | 40 | } catch (Throwable $e) { |
41 | - $message = 'Invalid cache file path: ' . $e->getMessage(); |
|
41 | + $message = 'Invalid cache file path: '.$e->getMessage(); |
|
42 | 42 | |
43 | 43 | throw new InvalidArgumentException($message, $e->getCode(), $e); |
44 | 44 | } |
@@ -88,7 +88,7 @@ |
||
88 | 88 | { |
89 | 89 | foreach ($processFactory->createProcesses($file) as $i => $process) { |
90 | 90 | $process->start(); |
91 | - $pool["$i:" . $file->getDisplayPath()] = $process; |
|
91 | + $pool["$i:".$file->getDisplayPath()] = $process; |
|
92 | 92 | } |
93 | 93 | } |
94 | 94 |