You are here

protected function NativeSessionStorageTest::tearDown in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-foundation/Tests/Session/Storage/NativeSessionStorageTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\NativeSessionStorageTest::tearDown()

File

vendor/symfony/http-foundation/Tests/Session/Storage/NativeSessionStorageTest.php, line 45

Class

NativeSessionStorageTest
Test class for NativeSessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

protected function tearDown() {
  session_write_close();
  array_map('unlink', glob($this->savePath . '/*'));
  if (is_dir($this->savePath)) {
    rmdir($this->savePath);
  }
  $this->savePath = null;
}