feature/implement-separate-remember-me #15
@ -23,15 +23,15 @@ class Request implements IRequest
|
|||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
string $base,
|
string $base,
|
||||||
array &$get,
|
array $get,
|
||||||
array &$post,
|
array $post,
|
||||||
array $headers,
|
array $headers,
|
||||||
array &$session,
|
array &$session,
|
||||||
IUserRepository $userRepository)
|
IUserRepository $userRepository)
|
||||||
{
|
{
|
||||||
$this->base = $base;
|
$this->base = $base;
|
||||||
$this->get = &$get;
|
$this->get = $get;
|
||||||
$this->post = &$post;
|
$this->post = $post;
|
||||||
$this->headers = $headers;
|
$this->headers = $headers;
|
||||||
$this->session = new Session($session);
|
$this->session = new Session($session);
|
||||||
|
|
||||||
@ -41,9 +41,9 @@ class Request implements IRequest
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setParsedRouteParams(array &$routeParams): void
|
public function setParsedRouteParams(array $routeParams): void
|
||||||
{
|
{
|
||||||
$this->routeParams = &$routeParams;
|
$this->routeParams = $routeParams;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getBase(): string
|
public function getBase(): string
|
||||||
|
Loading…
Reference in New Issue
Block a user