]> git.mxchange.org Git - friendica.git/blobdiff - index.php
A space in front of a message looks better
[friendica.git] / index.php
index 4857b1f12971a20a82c5ae62893bee154b5ebbb7..ba990532b824ba1b8998e5f6360a4a6799eda1e4 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -21,6 +21,8 @@
 
 use Dice\Dice;
 
+$start_time = microtime(true);
+
 if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
        die('Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.');
 }
@@ -32,12 +34,17 @@ $dice = $dice->addRule(Friendica\App\Mode::class, ['call' => [['determineRunMode
 
 \Friendica\DI::init($dice);
 
+\Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class));
+
 $a = \Friendica\DI::app();
 
+\Friendica\DI::mode()->setExecutor(\Friendica\App\Mode::INDEX);
+
 $a->runFrontend(
-       $dice->create(\Friendica\App\Module::class),
        $dice->create(\Friendica\App\Router::class),
-       $dice->create(\Friendica\Core\PConfig\IPConfig::class),
-       $dice->create(\Friendica\App\Authentication::class),
-       $dice->create(\Friendica\App\Page::class)
+       $dice->create(\Friendica\Core\PConfig\Capability\IManagePersonalConfigValues::class),
+       $dice->create(\Friendica\Security\Authentication::class),
+       $dice->create(\Friendica\App\Page::class),
+       new \Friendica\Util\HTTPInputData($_SERVER),
+       $start_time
 );