mirror of
https://github.com/friendica/friendica
synced 2025-05-06 11:04:12 +02:00
Refactor dynamic App::getProfiler() to static DI::profiler()
This commit is contained in:
parent
e2b2778e0a
commit
181529f3df
12 changed files with 22 additions and 30 deletions
|
@ -17,6 +17,7 @@ use Friendica\Content;
|
|||
use Friendica\Util\DateTimeFormat;
|
||||
use Friendica\Util\FileSystem;
|
||||
use Friendica\Util\Logger\WorkerLogger;
|
||||
use Friendica\Util\Profiler;
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
||||
/**
|
||||
|
@ -39,6 +40,7 @@ use Psr\Log\LoggerInterface;
|
|||
* @method static LoggerInterface logger()
|
||||
* @method static LoggerInterface devLogger()
|
||||
* @method static LoggerInterface workerLogger()
|
||||
* @method static Profiler profiler()
|
||||
* @method static ISession session()
|
||||
* @method static App\Authentication auth()
|
||||
* @method static App\Arguments args()
|
||||
|
@ -79,6 +81,7 @@ class DI
|
|||
'session' => ISession::class,
|
||||
'dba' => Database::class,
|
||||
'fs' => FileSystem::class,
|
||||
'profiler' => Profiler::class,
|
||||
];
|
||||
|
||||
/** @var Dice */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue