Kahlan\Jit\Interceptor::clearCache PHP Метод

clearCache() публичный Метод

Clear the cache.
public clearCache ( )
    public function clearCache()
    {
        $cachePath = $this->cachePath();
        if (!file_exists($cachePath)) {
            return;
        }
        $dir = new RecursiveDirectoryIterator($cachePath, RecursiveDirectoryIterator::SKIP_DOTS);
        $files = new RecursiveIteratorIterator($dir, RecursiveIteratorIterator::CHILD_FIRST);
        foreach ($files as $file) {
            $path = $file->getRealPath();
            $file->isDir() ? rmdir($path) : unlink($path);
        }
        rmdir($cachePath);
    }