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

Open in your IDE?
  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.         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.     /** @return int */
  26.     protected function execute(InputInterface $inputOutputInterface $output)
  27.     {
  28.         DoctrineCommandHelper::setApplicationEntityManager($this->getApplication(), $input->getOption('em'));
  29.         return parent::execute($input$output);
  30.     }
  31. }