We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf7d42c commit 7039435Copy full SHA for 7039435
src/Lemon/Http/Response.php
@@ -113,7 +113,7 @@ public function send(Application $app): static
113
$body = $this->parseBody();
114
$this->handleHeaders();
115
$this->handleStatusCode();
116
- $this->handleCookies($app->has('cookies') ? $app->get('cookies')->cookies() : []);
+ $this->handleCookies($app->get(CookieJar::class)->cookies());
117
$this->handleBody($body);
118
119
return $this;
src/Lemon/Kernel/Application.php
@@ -40,7 +40,7 @@ final class Application extends Container
40
/**
41
* Current Lemon version.
42
*/
43
- public const VERSION = '3.15.1';
+ public const VERSION = '3.15.2';
44
45
46
* Default units with aliases.
0 commit comments