From 0f84b3758db95e98c366a44cf87b3885a19b8dd7 Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 10 Aug 2021 11:09:37 +0300 Subject: [PATCH] feat(index): use `require_once` instead of `include` --- index.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.php b/index.php index 490eba5d..ab30872b 100755 --- a/index.php +++ b/index.php @@ -249,9 +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/bootstrap.php'; - - +require_once __DIR__ . '/src/flextype/flextype.php'; echo "
"; echo "Time: " . Debug::elapsedTime('flextype');