From 835eb30ebf135680472955a67a5e03663081b058 Mon Sep 17 00:00:00 2001 From: Awilum Date: Wed, 28 Jul 2021 21:07:37 +0300 Subject: [PATCH] feat(index): use `flextype()->app()->run()` instead bootstrap include #199 --- index.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.php b/index.php index fa1d97ab..198781a6 100755 --- a/index.php +++ b/index.php @@ -249,8 +249,7 @@ $flextypeLoader = require_once $flextypeAutoload; * will load up this application so that we can run it and send * the responses back to the browser and delight our users. */ -include __DIR__ . '/src/flextype/flextype.php'; - +flextype()->app()->run(); echo "
"; echo "Time: " . Debug::elapsedTime('flextype');