|
@@ -2,8 +2,8 @@
|
|
|
|
|
|
namespace App\Command;
|
|
|
|
|
|
+use App\Repository\FilmRepository;
|
|
|
use App\Service\NoteMoyenne;
|
|
|
-use Doctrine\ORM\EntityManagerInterface;
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
@@ -11,13 +11,9 @@ use Symfony\Component\Console\Style\SymfonyStyle;
|
|
|
|
|
|
class UpdateCommentairesCommand extends Command
|
|
|
{
|
|
|
- private $em;
|
|
|
- private $notesAndComs;
|
|
|
|
|
|
- public function __construct(EntityManagerInterface $em, NoteMoyenne $notesAndComs)
|
|
|
+ public function __construct(private NoteMoyenne $notesAndComs, private FilmRepository $repoFilm)
|
|
|
{
|
|
|
- $this->em = $em;
|
|
|
- $this->notesAndComs = $notesAndComs;
|
|
|
parent::__construct();
|
|
|
}
|
|
|
|
|
@@ -32,7 +28,7 @@ class UpdateCommentairesCommand extends Command
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) :int
|
|
|
{
|
|
|
$io = new SymfonyStyle($input, $output);
|
|
|
- $films = $this->em->getRepository('App:Film')->findAll();
|
|
|
+ $films = $this->repoFilm->findAll();
|
|
|
foreach ($films as $film)
|
|
|
{
|
|
|
$this->notesAndComs->calculerMoyenne($film);
|