From d4dc18b45ffe6f1daf952f470284990e6ff99dee Mon Sep 17 00:00:00 2001 From: weichien00 Date: Sat, 26 Jun 2021 00:58:47 +0800 Subject: [PATCH] fix: add index.php in public folder. --- public/index.php | 55 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 public/index.php diff --git a/public/index.php b/public/index.php new file mode 100644 index 00000000..66ea93cd --- /dev/null +++ b/public/index.php @@ -0,0 +1,55 @@ +make(Kernel::class); + +$response = tap($kernel->handle( + $request = Request::capture() +))->send(); + +$kernel->terminate($request, $response);