protected function PhpSessionStorageTest::setUp

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php, line 31

Class

PhpSessionStorageTest
Test class for PhpSessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

protected function setUp() {
  ini_set('session.save_handler', 'files');
  ini_set('session.save_path', $this->savePath = sys_get_temp_dir() . '/sf2test');
  if (!is_dir($this->savePath)) {
    mkdir($this->savePath);
  }
}