You are here

protected function MemcachedProfilerStorageTest::tearDown in Zircon Profile 8.0

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

File

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

Class

MemcachedProfilerStorageTest

Namespace

Symfony\Component\HttpKernel\Tests\Profiler

Code

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