Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simonchrz committed Jun 18, 2021
1 parent 22c222c commit 2bb97af
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -41,7 +41,7 @@ public function provideConnectionDSN(): array

return [
'native file handler using save_path from php.ini' => ['connectionDSN' => 'file://', 'expectedPath' => ini_get('session.save_path'), 'expectedHandlerType' => StrictSessionHandler::class],
'native file handler using provided save_path' => ['connectionDSN' => 'file://' . $base . '/session/storage', 'expectedPath' => '' . $base . '/session/storage', 'expectedHandlerType' => StrictSessionHandler::class],
'native file handler using provided save_path' => ['connectionDSN' => 'file://'.$base.'/session/storage', 'expectedPath' => $base.'/session/storage', 'expectedHandlerType' => StrictSessionHandler::class],
];
}
}

0 comments on commit 2bb97af

Please sign in to comment.