From e97cebd2b214e7eff7430401dcb210aeb7b14579 Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Fri, 31 May 2024 12:11:13 +0800 Subject: [PATCH] Fix typo in log message for new command #801 --- src/Command/ProcessLatePaymongoTransactionsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/ProcessLatePaymongoTransactionsCommand.php b/src/Command/ProcessLatePaymongoTransactionsCommand.php index 6f65dde1..c09545e5 100644 --- a/src/Command/ProcessLatePaymongoTransactionsCommand.php +++ b/src/Command/ProcessLatePaymongoTransactionsCommand.php @@ -83,7 +83,7 @@ class ProcessLatePaymongoTransactionsCommand extends Command $trans->setDatePay(new DateTime()); $this->em->flush(); - $output->writeln('Marked transaction '. $trans->getID() .'as paid.'); + $output->writeln('Marked transaction '. $trans->getID() . ' as paid.'); $x++; } } else {