Fix issues during testing. #773

This commit is contained in:
Korina Cordero 2023-11-09 18:08:59 +08:00
parent fd28be75d1
commit c77591fe01

View file

@ -9,12 +9,14 @@ use Symfony\Component\Console\Output\OutputInterface;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use App\Service\JobOrderManager;
class SetJobOrderCustNewCommand extends Command class SetJobOrderCustNewCommand extends Command
{ {
protected $em; protected $em;
protected $jo_manager; protected $jo_manager;
public function __construct(EntityManagerInterface $em, JobOrderManager) public function __construct(EntityManagerInterface $em, JobOrderManager $jo_manager)
{ {
$this->em = $em; $this->em = $em;
$this->jo_manager = $jo_manager; $this->jo_manager = $jo_manager;