Skip to content

Commit

Permalink
Merge pull request #454 from greg0ire/address-deprecation
Browse files Browse the repository at this point in the history
Pass a PSR logger to LoadDataFixturesDoctrineCommand
  • Loading branch information
greg0ire authored Nov 13, 2024
2 parents a345e6c + ba7e567 commit f44a224
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions src/Command/LoadDataFixturesDoctrineCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use Doctrine\Common\DataFixtures\Executor\ORMExecutor;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\Persistence\ManagerRegistry;
use Psr\Log\AbstractLogger;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
Expand Down Expand Up @@ -134,9 +135,27 @@ private function doExecute(InputInterface $input, OutputInterface $output): int
$input->getOption('purge-with-truncate'),
);
$executor = new ORMExecutor($em, $purger);
$executor->setLogger(static function ($message) use ($ui): void {
$ui->text(sprintf(' <comment>></comment> <info>%s</info>', $message));
$executor->setLogger(new class ($ui) extends AbstractLogger {
private SymfonyStyle $ui;

public function __construct(SymfonyStyle $ui)
{
$this->ui = $ui;
}

/** {@inheritDoc} */
public function log($level, $message, array $context = []): void
{
$this->ui->text(sprintf(' <comment>></comment> <info>%s</info>', $message));
}

/** @deprecated to be removed when dropping support for doctrine/data-fixtures <1.8 */
public function __invoke(string $message): void
{
$this->log(0, $message);
}
});

$executor->execute($fixtures, $input->getOption('append'));

return 0;
Expand Down

0 comments on commit f44a224

Please sign in to comment.