From de062479c60f4a792fd28c380fcf7d70c0e5c022 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 15 Feb 2023 11:07:32 +0900 Subject: [PATCH] refactor: revert parameter variable name --- system/Session/Session.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/Session/Session.php b/system/Session/Session.php index 6c7ea5813d5c..394f6892163e 100644 --- a/system/Session/Session.php +++ b/system/Session/Session.php @@ -180,11 +180,11 @@ class Session implements SessionInterface * * Extract configuration settings and save them here. */ - public function __construct(SessionHandlerInterface $driver, SessionConfig $session) + public function __construct(SessionHandlerInterface $driver, SessionConfig $config) { $this->driver = $driver; - $this->config = $session; + $this->config = $config; /** @var CookieConfig $cookie */ $cookie = config('Cookie');