Jordi Boggiano 11 lat temu
rodzic
commit
cea7c07cf2
1 zmienionych plików z 3 dodań i 5 usunięć
  1. 3 5
      src/Composer/Autoload/AutoloadGenerator.php

+ 3 - 5
src/Composer/Autoload/AutoloadGenerator.php

@@ -578,15 +578,13 @@ FOOTER;
 
             foreach ($autoload[$type] as $namespace => $paths) {
                 foreach ((array) $paths as $path) {
-                    if (($type === 'files' || $type === 'classmap') && $package->getTargetDir() && !is_readable($installPath.'/'.$path))
-                    {
+                    if (($type === 'files' || $type === 'classmap') && $package->getTargetDir() && !is_readable($installPath.'/'.$path)) {
                         // remove target-dir from file paths of the root package
                         if ($package === $mainPackage) {
                             $targetDir = str_replace('\\<dirsep\\>', '[\\\\/]', preg_quote(str_replace(array('/', '\\'), '<dirsep>', $package->getTargetDir())));
                             $path = ltrim(preg_replace('{^'.$targetDir.'}', '', ltrim($path, '\\/')), '\\/');
-                        }
-                        // add target-dir from file paths that don't have it
-                        else {
+                        } else {
+                            // add target-dir from file paths that don't have it
                             $path = $package->getTargetDir() . '/' . $path;
                         }
                     }