vendor/doctrine/doctrine-bundle/Command/Proxy/ValidateSchemaCommand.php line 13

Open in your IDE?
  1. <?php
  2. namespace Doctrine\Bundle\DoctrineBundle\Command\Proxy;
  3. use Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand as DoctrineValidateSchemaCommand;
  4. use Symfony\Component\Console\Input\InputInterface;
  5. use Symfony\Component\Console\Input\InputOption;
  6. use Symfony\Component\Console\Output\OutputInterface;
  7. /**
  8.  * Command to run Doctrine ValidateSchema() on the current mappings.
  9.  */
  10. class ValidateSchemaCommand extends DoctrineValidateSchemaCommand
  11. {
  12.     /**
  13.      * {@inheritDoc}
  14.      */
  15.     protected function configure()
  16.     {
  17.         parent::configure();
  18.         $this
  19.             ->setName('doctrine:schema:validate');
  20.         if ($this->getDefinition()->hasOption('em')) {
  21.             return;
  22.         }
  23.         $this->addOption('em'nullInputOption::VALUE_OPTIONAL'The entity manager to use for this command');
  24.     }
  25.     /**
  26.      * {@inheritDoc}
  27.      */
  28.     protected function execute(InputInterface $inputOutputInterface $output)
  29.     {
  30.         DoctrineCommandHelper::setApplicationEntityManager($this->getApplication(), $input->getOption('em'));
  31.         return parent::execute($input$output);
  32.     }
  33. }