We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55cf540 commit 9a7dee6Copy full SHA for 9a7dee6
packages/router/src/HttpApplication.php
@@ -10,7 +10,7 @@
10
use Tempest\Core\Kernel;
11
use Tempest\Core\Tempest;
12
use Tempest\Http\RequestFactory;
13
-use Tempest\Http\Session\Session;
+use Tempest\Http\Session\SessionManager;
14
use Tempest\Log\Channels\AppendLogChannel;
15
use Tempest\Log\LogConfig;
16
@@ -57,7 +57,7 @@ public function run(): void
57
$router->dispatch($psrRequest),
58
);
59
60
- $this->container->get(Session::class)->cleanup();
+ $this->container->get(SessionManager::class)->cleanup();
61
62
$this->container->get(Kernel::class)->shutdown();
63
}
0 commit comments