Skip to content

Commit

Permalink
session
Browse files Browse the repository at this point in the history
  • Loading branch information
walkor committed Aug 16, 2022
1 parent d05043d commit 04d6460
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/

use Webman\Session\FileSessionHandler;
use Webman\Session\RedisSessionHandler;
use Webman\Session\RedisClusterSessionHandler;

return [

'type' => 'file', // or redis or redis_cluster

'handler' => Webman\FileSessionHandler::class,
'handler' => FileSessionHandler::class,

'config' => [
'file' => [
Expand Down

0 comments on commit 04d6460

Please sign in to comment.