manhhoangfnq

Results 1 issues of manhhoangfnq

``` public function __invoke(ServerRequestInterface $request, ResponseInterface $response, $next)` { if (!$next) { return $response; } $ipAddress = $this->determineClientIpAddress($request); $request = $request->withAttribute($this->attributeName, $ipAddress); return $response = $next($request, $response); } ``` I...