Passed
Push — master ( 1f8075...93e91b )
by Fabien
02:17
created
src/File/FileHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         return (new Filesystem())->isAbsolutePath($path)
21 21
             ? $path
22
-            : $basePath . '/' . $path;
22
+            : $basePath.'/'.$path;
23 23
     }
24 24
 
25 25
     /**
Please login to merge, or discard this patch.
src/Process/CacheProcessFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Process/Handler/ParallelProcessHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.