| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class LoadFixturesCommand extends Command |
||
| 19 | { |
||
| 20 | protected static $defaultName = 'gorynych:load-fixtures'; |
||
| 21 | |||
| 22 | private EntityManagerAdapterInterface $entityManager; |
||
| 23 | |||
| 24 | public function __construct(EntityManagerAdapterInterface $managerAdapter) |
||
| 25 | { |
||
| 26 | parent::__construct(); |
||
| 27 | |||
| 28 | $this->entityManager = $managerAdapter; |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function configure(): void |
||
| 36 | } |
||
| 37 | |||
| 38 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 49 | } |
||
| 50 | } |
||
| 51 |