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\CacheWarmer; Chris@0: Chris@0: /** Chris@0: * Interface for classes that support warming their cache. Chris@0: * Chris@0: * @author Fabien Potencier Chris@0: */ Chris@0: interface WarmableInterface Chris@0: { Chris@0: /** Chris@0: * Warms up the cache. Chris@0: * Chris@0: * @param string $cacheDir The cache directory Chris@0: */ Chris@0: public function warmUp($cacheDir); Chris@0: }