public function NativeFileSessionHandlerTest::savePathDataProvider

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/NativeFileSessionHandlerTest.php, line 54

Class

NativeFileSessionHandlerTest
Test class for NativeFileSessionHandler.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler

Code

public function savePathDataProvider() {
  $base = sys_get_temp_dir();
  return array(
    array(
      "{$base}/foo",
      "{$base}/foo",
      "{$base}/foo",
    ),
    array(
      "5;{$base}/foo",
      "5;{$base}/foo",
      "{$base}/foo",
    ),
    array(
      "5;0600;{$base}/foo",
      "5;0600;{$base}/foo",
      "{$base}/foo",
    ),
  );
}