Completed
Push — master ( c43217...d06016 )
by personal
22s queued 13s
created
src/Hal/Metric/System/Packages/Composer/Composer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         }
62 62
 
63 63
         // exclude extensions
64
-        $packages = array_filter($packages, function ($package) {
64
+        $packages = array_filter($packages, function($package) {
65 65
             return !preg_match('!(^php$|^ext\-)!', $package->name);
66 66
         });
67 67
 
Please login to merge, or discard this patch.
src/Hal/Metric/System/UnitTesting/UnitTesting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             ]);
122 122
 
123 123
             if (!file_exists($suite->file) || !is_readable($suite->file)) {
124
-                throw new \LogicException('Cannot find source file referenced in testsuite: ' . $suite->file);
124
+                throw new \LogicException('Cannot find source file referenced in testsuite: '.$suite->file);
125 125
             }
126 126
 
127 127
             $code = file_get_contents($suite->file);
Please login to merge, or discard this patch.