From 66822c6a81b25d0200291fc94317fd5b78446e48 Mon Sep 17 00:00:00 2001 From: Art4 Date: Mon, 23 Dec 2024 15:26:35 +0000 Subject: [PATCH] Rename App variable --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 8ba10df263..9ea262c5e7 100644 --- a/index.php +++ b/index.php @@ -19,6 +19,6 @@ $request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals(); $dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php'); -$a = \Friendica\App::fromDice($dice); +$app = \Friendica\App::fromDice($dice); -$a->processRequest($request, $start_time); +$app->processRequest($request, $start_time);