UpdateSchemaDoctrineCommand.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace Doctrine\Bundle\DoctrineBundle\Command\Proxy;
  3. use Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand;
  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 generate the SQL needed to update the database schema to match
  9. * the current mapping information.
  10. */
  11. class UpdateSchemaDoctrineCommand extends UpdateCommand
  12. {
  13. /**
  14. * {@inheritDoc}
  15. */
  16. protected function configure()
  17. {
  18. parent::configure();
  19. $this
  20. ->setName('doctrine:schema:update')
  21. ->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command');
  22. }
  23. /**
  24. * {@inheritDoc}
  25. */
  26. protected function execute(InputInterface $input, OutputInterface $output)
  27. {
  28. DoctrineCommandHelper::setApplicationEntityManager($this->getApplication(), $input->getOption('em'));
  29. return parent::execute($input, $output);
  30. }
  31. }