adding parameter to App

Bu işleme şunda yer alıyor:
Philipp Holzer 2019-02-16 23:18:24 +01:00
ebeveyn 0a7861da65
işleme cb1ad4287d
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 517BE60E2CE5C8A5
5 değiştirilmiş dosya ile 5 ekleme ve 5 silme

Dosyayı Görüntüle

@ -58,7 +58,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
$configLoader = new Config\ConfigCacheLoader($basedir);
$config = Factory\ConfigFactory::createCache($configLoader);
$logger = Factory\LoggerFactory::create('auth_ejabberd', $config);
$profiler = Factory\ProfilerFactory::create($config);
$profiler = Factory\ProfilerFactory::create($logger, $config);
$a = new App($config, $logger, $profiler);

Dosyayı Görüntüle

@ -11,7 +11,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
$configLoader = new Config\ConfigCacheLoader($basedir);
$config = Factory\ConfigFactory::createCache($configLoader);
$logger = Factory\LoggerFactory::create('console', $config);
$profiler = Factory\ProfilerFactory::create($config);
$profiler = Factory\ProfilerFactory::create($logger, $config);
$a = new Friendica\App($config, $logger, $profiler);
\Friendica\BaseObject::setApp($a);

Dosyayı Görüntüle

@ -37,7 +37,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
$configLoader = new Config\ConfigCacheLoader($basedir);
$config = Factory\ConfigFactory::createCache($configLoader);
$logger = Factory\LoggerFactory::create('daemon', $config);
$profiler = Factory\ProfilerFactory::create($config);
$profiler = Factory\ProfilerFactory::create($logger, $config);
$a = new App($config, $logger, $profiler);

Dosyayı Görüntüle

@ -35,7 +35,7 @@ $basedir = BasePath::create(dirname(__DIR__), $_SERVER);
$configLoader = new Config\ConfigCacheLoader($basedir);
$config = Factory\ConfigFactory::createCache($configLoader);
$logger = Factory\LoggerFactory::create('worker', $config);
$profiler = Factory\ProfilerFactory::create($config);
$profiler = Factory\ProfilerFactory::create($logger, $config);
$a = new App($config, $logger, $profiler);

Dosyayı Görüntüle

@ -19,7 +19,7 @@ $basedir = BasePath::create(__DIR__, $_SERVER);
$configLoader = new Config\ConfigCacheLoader($basedir);
$config = Factory\ConfigFactory::createCache($configLoader);
$logger = Factory\LoggerFactory::create('index', $config);
$profiler = Factory\ProfilerFactory::create($config);
$profiler = Factory\ProfilerFactory::create($logger, $config);
// We assume that the index.php is called by a frontend process
// The value is set to "true" by default in App