You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new Parameter($session->name()->toString(), $session->id()->toString()),
48
-
new HttpOnly,
49
-
new Domain($request->url()->authority()->host()),
46
+
$session->name()->toString(),
47
+
$session->id()->toString(),
48
+
Directive::httpOnly,
49
+
Domain::of($request->url()->authority()->host()),
50
50
),
51
51
),
52
52
);
53
53
// send the response
54
54
```
55
55
56
-
**Note**: you should take a look at [`innmint/http-server`](https://github.com/Innmind/HttpServer) in order to know how to have access to an instance of `ServerRequest` and send the `Response`.
56
+
> [!NOTE]
57
+
> You should take a look at [`innmind/http-server`](https://github.com/Innmind/HttpServer) in order to know how to have access to an instance of `ServerRequest` and send the `Response`.
0 commit comments