Commit 3822f1e2 by Julien Jorry

Fix Solidoume command exit bug

parent c931be1b
...@@ -312,7 +312,6 @@ class SolidoumeCommand extends Command ...@@ -312,7 +312,6 @@ class SolidoumeCommand extends Command
$this->io->success('Nombre de participants au programme : ' . $countParticipants . ' !'); $this->io->success('Nombre de participants au programme : ' . $countParticipants . ' !');
$this->io->success('Total par participants (sans commission) : ' . ($total / $countParticipants) . ' !'); $this->io->success('Total par participants (sans commission) : ' . ($total / $countParticipants) . ' !');
$this->io->success('Total par participants (avec commission de ' . $this->param->getCommission() . '%) : ' . $totalByParticipant . ' !'); $this->io->success('Total par participants (avec commission de ' . $this->param->getCommission() . '%) : ' . $totalByParticipant . ' !');
exit();
try { try {
$em = $this->em; $em = $this->em;
$isTest = $this->isTest; $isTest = $this->isTest;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment