From f441bfe15e739200fe2464c47b90c77e7ab250bc Mon Sep 17 00:00:00 2001 From: vasya Date: Sun, 29 Mar 2026 19:56:04 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B2=D1=85=D0=BE=D0=B4=D0=BD=D0=B0=D1=8F=20?= =?UTF-8?q?=D1=82=D0=BE=D1=87=D0=BA=D0=B0=20=D0=BF=D1=80=D0=B8=D0=BB=D0=BE?= =?UTF-8?q?=D0=B6=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.php | 47 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 41 insertions(+), 6 deletions(-) diff --git a/public/index.php b/public/index.php index ee8f07e..1d69f3a 100644 --- a/public/index.php +++ b/public/index.php @@ -1,20 +1,55 @@ handleRequest(Request::capture()); +$kernel = $app->make(Kernel::class); + +$response = $kernel->handle( + $request = Request::capture() +)->send(); + +$kernel->terminate($request, $response);