1
0
Fork 0

Explicit comparison was removed.

pull/4359/head
voroks 2015-08-18 16:10:59 +08:00
parent cca42ff0be
commit 457bc20c34
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ EOF;
$includeFilesFilePath = $targetDir.'/autoload_files.php';
if ($includeFilesFile = $this->getIncludeFilesFile($autoloads['files'], $filesystem, $basePath, $vendorPath, $vendorPathCode52, $appBaseDirCode)) {
file_put_contents($includeFilesFilePath, $includeFilesFile);
} else if (file_exists($includeFilesFilePath) === true) {
} else if (file_exists($includeFilesFilePath)) {
unlink($includeFilesFilePath);
}
file_put_contents($vendorPath.'/autoload.php', $this->getAutoloadFile($vendorPathToTargetDirCode, $suffix));