@@ -61,7 +61,7 @@ |
||
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 |
@@ -121,7 +121,7 @@ |
||
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); |