Passed
Push — master ( 0c3679...f402bd )
by Fabien
02:30
created
src/Event/HookLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
         foreach ($hooks as $hook) {
57 57
             if (!$this->attach($hook, $broker)) {
58
-                throw new InvalidArgumentException('Invalid hook: ' . $hook);
58
+                throw new InvalidArgumentException('Invalid hook: '.$hook);
59 59
             }
60 60
         }
61 61
     }
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
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         try {
46 46
             FileHelper::ensureFileIsWritable($cachePath);
47 47
         } catch (Throwable $e) {
48
-            $message = 'Invalid cache file path: ' . $e->getMessage();
48
+            $message = 'Invalid cache file path: '.$e->getMessage();
49 49
 
50 50
             throw new InvalidArgumentException($message, 0, $e);
51 51
         }
Please login to merge, or discard this patch.