1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-10 09:02:59 +00:00
This commit is contained in:
Jordi Boggiano 2012-08-18 16:22:15 +02:00
parent ef637c8f1a
commit 521bbe6556
5 changed files with 11 additions and 14 deletions

View file

@ -343,7 +343,7 @@ AUTOLOAD;
// - https://bugs.php.net/bug.php?id=59298
if ($filesCode) {
$filesCode = "\n".$filesCode;
$filesCode = "\n\n".rtrim($filesCode);
}
$file = <<<HEADER
@ -406,8 +406,7 @@ REGISTER_AUTOLOAD;
}
$file .= <<<METHOD_FOOTER
\$loader->register();
$filesCode
\$loader->register();{$filesCode}
return \$loader;
}