1
0
Fork 0

Fix feedback from 7222c1

pull/151/head
Jordi Boggiano 2012-01-23 10:28:15 +01:00 committed by digitalkaoz
parent dca0cbc93a
commit 50e7f4bea9
1 changed files with 1 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class AutoloadGenerator
<?php <?php
// autoload.php generated by Composer // autoload.php generated by Composer
if (!class_exists('Composer\\Autoload\\ClassLoader')) { if (!class_exists('Composer\\Autoload\\ClassLoader', false)) {
require __DIR__.'/ClassLoader.php'; require __DIR__.'/ClassLoader.php';
} }
@ -120,7 +120,6 @@ EOF;
file_put_contents($targetDir.'/autoload.php', $autoloadFile); file_put_contents($targetDir.'/autoload.php', $autoloadFile);
file_put_contents($targetDir.'/autoload_namespaces.php', $namespacesFile); file_put_contents($targetDir.'/autoload_namespaces.php', $namespacesFile);
file_put_contents($targetDir.'/autoload_namespaces.php', $namespacesFile);
copy(__DIR__.'/ClassLoader.php', $targetDir.'/ClassLoader.php'); copy(__DIR__.'/ClassLoader.php', $targetDir.'/ClassLoader.php');
} }