diff --git a/src/Request/Request.php b/src/Request/Request.php index 535f4f0..77cd711 100644 --- a/src/Request/Request.php +++ b/src/Request/Request.php @@ -17,7 +17,7 @@ class Request implements IRequest private array $headers; - private Session $session; + private ISession $session; private ?IUser $user = null; @@ -26,14 +26,14 @@ class Request implements IRequest array $get, array $post, array $headers, - array &$session, + ISession $session, IUserRepository $userRepository) { $this->base = $base; $this->get = $get; $this->post = $post; $this->headers = $headers; - $this->session = new Session($session); + $this->session = $session; $userId = $this->session->get('userId'); if ($userId !== null) {