Passed
Push — main ( dd1e4a...643412 )
by Dimitri
04:55
created
src/Autoloader/Autoloader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
     {
313 313
         $namespacePaths = $composer->getPrefixesPsr4();
314 314
 
315
-        if (! method_exists(InstalledVersions::class, 'getAllRawData')) {
315
+        if (!method_exists(InstalledVersions::class, 'getAllRawData')) {
316 316
             throw new RuntimeException(
317 317
                 'Your Composer version is too old.'
318 318
                 . ' Please update Composer (run `composer self-update`) to v2.0.14 or later'
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
             }
343 343
         } else {
344 344
             foreach ($packageList as $packageName => $data) {
345
-                if (! in_array($packageName, $exclude, true) && isset($data['install_path'])) {
345
+                if (!in_array($packageName, $exclude, true) && isset($data['install_path'])) {
346 346
                     $installPaths[] = $data['install_path'];
347 347
                 }
348 348
             }
Please login to merge, or discard this patch.