add return value for console commands

This commit is contained in:
Nicolas Le Goff
2012-02-10 19:17:05 +01:00
parent 6f837c7407
commit 7f0c006730
15 changed files with 178 additions and 94 deletions

View File

@@ -39,7 +39,7 @@ class module_console_aboutAuthors extends Command
{
$output->writeln(file_get_contents(__DIR__ . '/../../../../AUTHORS'));
return;
return 0;
}
}