for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Bundle\DoctrineBundle\Command\Proxy;
use Doctrine\ORM\Tools\Console\Command\ClearCache\CollectionRegionCommand;
/**
* Command to clear a collection cache region.
*/
class CollectionRegionDoctrineCommand extends DelegateCommand
{
* {@inheritDoc}
protected function configure()
parent::configure();
$this->setName('doctrine:cache:clear-collection-region');
}
protected function createCommand()
return new CollectionRegionCommand();
protected function getMinimalVersion()
return '2.5.0-DEV';