You are here

protected function RedisProfilerStorageTest::tearDown in Zircon Profile 8.0

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

File

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

Class

RedisProfilerStorageTest

Namespace

Symfony\Component\HttpKernel\Tests\Profiler

Code

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