From 5652ad655914b7f7eda54b954ef1f288dd5c09f7 Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 1 Aug 2021 12:52:50 +0300 Subject: [PATCH] feat(index): use flextype.php starting point #199 --- index.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index 198781a63..70d424d30 100755 --- a/index.php +++ b/index.php @@ -249,7 +249,9 @@ public static function phpini() * will load up this application so that we can run it and send * the responses back to the browser and delight our users. */ -flextype()->app()->run(); +include __DIR__ . '/src/flextype/flextype.php'; + + echo "
"; echo "Time: " . Debug::elapsedTime('flextype');