addOption('force', null, InputOption::VALUE_NONE, 'Forcer la création des profils utilisateur') ; } protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); if ($input->getOption('force')) { $users = $this->repoUser->findAll(); foreach($users as $user) { if ($user->getProfile() === null) { $io->note(sprintf('%s : pas de profil', $user->getNomComplet())); $profil = new Profile(); $profil->setUser($user); $this->em->persist($profil); } } $this->em->flush(); $io->success(sprintf('La bdd a été modifiée.')); return Command::SUCCESS; } else { $io->note(sprintf('La bdd n\'a pas été modifiée. Utilisez l\'option --force.')); return Command::SUCCESS; } } }