. */ namespace Doctrine\ORM\Tools\Console\Command; use Doctrine\ORM\Mapping\MappingException; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; /** * Show information about mapped entities. * * @link www.doctrine-project.org * @since 2.1 * @author Benjamin Eberlei */ class InfoCommand extends Command { /** * {@inheritdoc} */ protected function configure() { $this->setName('orm:info') ->setDescription('Show basic information about all mapped entities') ->setHelp(<<%command.name% shows basic information about which entities exist and possibly if their mapping information contains errors or not. EOT ); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $ui = new SymfonyStyle($input, $output); /* @var $entityManager \Doctrine\ORM\EntityManager */ $entityManager = $this->getHelper('em')->getEntityManager(); $entityClassNames = $entityManager->getConfiguration() ->getMetadataDriverImpl() ->getAllClassNames(); if ( ! $entityClassNames) { $ui->caution( [ 'You do not have any mapped Doctrine ORM entities according to the current configuration.', 'If you have entities or mapping files you should check your mapping configuration for errors.' ] ); return 1; } $ui->text(sprintf("Found %d mapped entities:", count($entityClassNames))); $ui->newLine(); $failure = false; foreach ($entityClassNames as $entityClassName) { try { $entityManager->getClassMetadata($entityClassName); $ui->text(sprintf("[OK] %s", $entityClassName)); } catch (MappingException $e) { $ui->text( [ sprintf("[FAIL] %s", $entityClassName), sprintf("%s", $e->getMessage()), '' ] ); $failure = true; } } return $failure ? 1 : 0; } }