You are here

protected function HttpCacheTestCase::tearDown in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/HttpCache/HttpCacheTestCase.php \Symfony\Component\HttpKernel\Tests\HttpCache\HttpCacheTestCase::tearDown()

File

vendor/symfony/http-kernel/Tests/HttpCache/HttpCacheTestCase.php, line 50

Class

HttpCacheTestCase

Namespace

Symfony\Component\HttpKernel\Tests\HttpCache

Code

protected function tearDown() {
  $this->kernel = null;
  $this->cache = null;
  $this->caches = null;
  $this->request = null;
  $this->response = null;
  $this->responses = null;
  $this->cacheConfig = null;
  $this->catch = null;
  $this->esi = null;
  $this
    ->clearDirectory(sys_get_temp_dir() . '/http_cache');
}