EntityRegionCacheDoctrineCommand.php 1000 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace Doctrine\Bundle\DoctrineBundle\Command\Proxy;
  3. use Doctrine\ORM\Tools\Console\Command\ClearCache\EntityRegionCommand;
  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 clear a entity cache region.
  9. */
  10. class EntityRegionCacheDoctrineCommand extends EntityRegionCommand
  11. {
  12. /**
  13. * {@inheritDoc}
  14. */
  15. protected function configure()
  16. {
  17. parent::configure();
  18. $this
  19. ->setName('doctrine:cache:clear-entity-region')
  20. ->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command');
  21. }
  22. /**
  23. * @return int
  24. */
  25. protected function execute(InputInterface $input, OutputInterface $output)
  26. {
  27. DoctrineCommandHelper::setApplicationEntityManager($this->getApplication(), $input->getOption('em'));
  28. return parent::execute($input, $output);
  29. }
  30. }