Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
16.67% covered (danger)
16.67%
1 / 6
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
ApieUpdateIdfCommand
16.67% covered (danger)
16.67%
1 / 6
50.00% covered (danger)
50.00%
1 / 2
19.47
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 execute
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
20
1<?php
2
3namespace Apie\DoctrineEntityDatalayer\Commands;
4
5use Apie\DoctrineEntityDatalayer\EntityReindexer;
6use Apie\DoctrineEntityDatalayer\OrmBuilder;
7use Apie\StorageMetadataBuilder\Interfaces\HasIndexInterface;
8use Symfony\Component\Console\Command\Command;
9use Symfony\Component\Console\Input\InputInterface;
10use Symfony\Component\Console\Output\OutputInterface;
11
12class ApieUpdateIdfCommand extends Command
13{
14    public function __construct(
15        private readonly EntityReindexer $entityReindexer,
16        private readonly OrmBuilder $ormBuilder
17    ) {
18        parent::__construct('apie:update-idf');
19    }
20
21    protected function execute(InputInterface $input, OutputInterface $output): int
22    {
23        foreach ($this->ormBuilder->createEntityManager()->getMetadataFactory()->getAllMetadata() as $metadata) {
24            if ($metadata->reflClass && in_array(HasIndexInterface::class, $metadata->reflClass->getInterfaceNames())) {
25                $output->writeln($metadata->reflClass->getMethod('getClassReference')->invoke(null)->getShortName());
26                $this->entityReindexer->recalculateIdfForAll($metadata->reflClass);
27            }
28        }
29        return Command::SUCCESS;
30    }
31}