Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\HttpKernel\CacheClearer; Chris@0: Chris@0: /** Chris@0: * CacheClearerInterface. Chris@0: * Chris@0: * @author Dustin Dobervich Chris@0: */ Chris@0: interface CacheClearerInterface Chris@0: { Chris@0: /** Chris@0: * Clears any caches necessary. Chris@0: * Chris@0: * @param string $cacheDir The cache directory Chris@0: */ Chris@0: public function clear($cacheDir); Chris@0: }