Skip to content

Commit de06247

Browse files
committed
refactor: revert parameter variable name
1 parent ba1a5ce commit de06247

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system/Session/Session.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@ class Session implements SessionInterface
180180
*
181181
* Extract configuration settings and save them here.
182182
*/
183-
public function __construct(SessionHandlerInterface $driver, SessionConfig $session)
183+
public function __construct(SessionHandlerInterface $driver, SessionConfig $config)
184184
{
185185
$this->driver = $driver;
186186

187-
$this->config = $session;
187+
$this->config = $config;
188188

189189
/** @var CookieConfig $cookie */
190190
$cookie = config('Cookie');

0 commit comments

Comments
 (0)