From: Art4 Date: Mon, 23 Dec 2024 15:26:35 +0000 (+0000) Subject: Rename App variable X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=66822c6a81b25d0200291fc94317fd5b78446e48;p=friendica.git Rename App variable --- 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);