for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Kdyby (http://www.kdyby.org)
*
* Copyright (c) 2008 Filip Procházka ([email protected])
* For the full copyright and license information, please view the file license.txt that was distributed with this source code.
*/
namespace Kdyby\Doctrine\Console\Proxy;
use Doctrine\ORM\Tools\Console\Command\ClearCache\ResultCommand;
use Kdyby\Doctrine\Console\OrmDelegateCommand;
* Command to clear the result cache of the various cache drivers.
class CacheClearResultCommand extends OrmDelegateCommand
{
protected function createCommand()
return new ResultCommand();
}