em = $em; $this->params = $params; $this->passwordHasher = $passwordHasher; parent::__construct(); } protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); $io->title("APP:INIT"); $io->text("Initialisation of the app"); $io->text(""); // Création du compte admin $io->text("> Création du compte admin"); $user = $this->em->getRepository("App\Entity\User")->findOneBy(["username"=>"admin"]); if(!$user) { $user=new User; $hashedPassword = $this->passwordHasher->hashPassword( $user, $this->params->get("appSecret") ); $user->setUsername("admin"); $user->setPassword($hashedPassword); $this->em->persist($user); $this->em->flush(); } // Création d'un company par defaut $io->text("> Création d'un company par defaut"); $nbcompanys = $this->em->getRepository("App\Entity\Company")->count([]); if($nbcompanys==0) { $company=new Company; $company->setTitle($this->params->get("appName")); $company->setLogo("logo.png"); $this->em->persist($company); $this->em->flush(); } return Command::SUCCESS; } }