Skip to content

Commit

Permalink
refactor: revert parameter variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Feb 15, 2023
1 parent ba1a5ce commit de06247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/Session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit de06247

Please sign in to comment.