From c77591fe016a4187618d235b3ab2fdfd8842a00b Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Thu, 9 Nov 2023 18:08:59 +0800 Subject: [PATCH] Fix issues during testing. #773 --- src/Command/SetJobOrderCustNewCommand.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Command/SetJobOrderCustNewCommand.php b/src/Command/SetJobOrderCustNewCommand.php index 43558072..5449b371 100644 --- a/src/Command/SetJobOrderCustNewCommand.php +++ b/src/Command/SetJobOrderCustNewCommand.php @@ -9,12 +9,14 @@ use Symfony\Component\Console\Output\OutputInterface; use Doctrine\ORM\EntityManagerInterface; +use App\Service\JobOrderManager; + class SetJobOrderCustNewCommand extends Command { protected $em; protected $jo_manager; - public function __construct(EntityManagerInterface $em, JobOrderManager) + public function __construct(EntityManagerInterface $em, JobOrderManager $jo_manager) { $this->em = $em; $this->jo_manager = $jo_manager;