From c99958c32790e36fb28b78b44f308278cbdbc4c0 Mon Sep 17 00:00:00 2001 From: Art4 Date: Thu, 26 Dec 2024 07:26:04 +0000 Subject: [PATCH] require dependencies.config.php file in index.php entry point --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 9ea262c5e7..5cdb309363 100644 --- a/index.php +++ b/index.php @@ -17,7 +17,7 @@ require __DIR__ . '/vendor/autoload.php'; $request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals(); -$dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php'); +$dice = (new Dice())->addRules(require(__DIR__ . '/static/dependencies.config.php')); $app = \Friendica\App::fromDice($dice);