sterntours/vendor/doctrine/doctrine-bundle/Command/Proxy/CollectionRegionDoctrineCommand.php
2020-07-09 12:49:32 +02:00

37 lines
697 B
PHP

<?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');
}
/**
* {@inheritDoc}
*/
protected function createCommand()
{
return new CollectionRegionCommand();
}
/**
* {@inheritDoc}
*/
protected function getMinimalVersion()
{
return '2.5.0-DEV';
}
}