You are here

protected function MemcacheProfilerStorageTest::tearDown in Zircon Profile 8

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

File

vendor/symfony/http-kernel/Tests/Profiler/MemcacheProfilerStorageTest.php, line 34

Class

MemcacheProfilerStorageTest

Namespace

Symfony\Component\HttpKernel\Tests\Profiler

Code

protected function tearDown() {
  if (self::$storage) {
    self::$storage
      ->purge();
    self::$storage = false;
  }
}