Release 2.0.9

This commit is contained in:
Craig Davis
2015-03-16 07:23:51 -06:00
parent 20dccd5689
commit 668fe916a9
4 changed files with 20 additions and 16 deletions

View File

@@ -102,7 +102,7 @@ class HtmlCommand extends Command
array_push($assets, new FileAsset($fileInfo->getPathname()));
}
usort($assets, function(FileAsset $a, FileAsset $b){
usort($assets, function (FileAsset $a, FileAsset $b) {
return strcmp($a->getSourcePath(), $b->getSourcePath());
});
@@ -179,7 +179,6 @@ class HtmlCommand extends Command
protected function determineOutfile($outputFilename)
{
return join(DIRECTORY_SEPARATOR, array($destination, pathinfo($source, PATHINFO_FILENAME) . '.html'));
}
}