1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fixes DDC-1395

This commit is contained in:
Guilherme Blanco 2011-10-03 01:26:43 -03:00
parent 80284a273d
commit cd28051370

View file

@ -78,13 +78,13 @@ EOT
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output) protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
{ {
$em = $this->getHelper('em')->getEntityManager(); $em = $this->getHelper('em')->getEntityManager();
$cacheDriver = $em->getConfiguration()->getQueryCacheImpl(); $cacheDriver = $em->getConfiguration()->getResultCacheImpl();
if ( ! $cacheDriver) { if ( ! $cacheDriver) {
throw new \InvalidArgumentException('No Result cache driver is configured on given EntityManager.'); throw new \InvalidArgumentException('No Result cache driver is configured on given EntityManager.');
} }
$output->write('Clearing ALL Query cache entries' . PHP_EOL); $output->write('Clearing ALL Result cache entries' . PHP_EOL);
$result = $cacheDriver->deleteAll(); $result = $cacheDriver->deleteAll();
$message = ($result) ? 'Successfully deleted cache entries.' : 'No cache entries were deleted.'; $message = ($result) ? 'Successfully deleted cache entries.' : 'No cache entries were deleted.';