You are here

protected function ProfilerTest::tearDown in Zircon Profile 8

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

File

vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php, line 77

Class

ProfilerTest

Namespace

Symfony\Component\HttpKernel\Tests\Profiler

Code

protected function tearDown() {
  if (null !== $this->storage) {
    $this->storage
      ->purge();
    $this->storage = null;
    @unlink($this->tmp);
  }
}