1
0
Fork 0

Standards fixes per @stof

pull/204/head
Beau Simensen 2012-01-12 21:40:53 -06:00
parent e8fcf281fa
commit 2d721f5792
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ EOF;
} }
$exportedPrefix = var_export($namespace, true); $exportedPrefix = var_export($namespace, true);
$namespacesFile .= " $exportedPrefix => "; $namespacesFile .= " $exportedPrefix => ";
if (count($exportedPaths)>1) { if (count($exportedPaths) > 1) {
$namespacesFile .= "array(".implode(',',$exportedPaths)."),\n"; $namespacesFile .= "array(".implode(', ',$exportedPaths)."),\n";
} else { } else {
$namespacesFile .= $exportedPaths[0].",\n"; $namespacesFile .= $exportedPaths[0].",\n";
} }