Fix issues during testing. #773
This commit is contained in:
parent
fd28be75d1
commit
c77591fe01
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue