Refactor dynamic App::getProfiler() to static DI::profiler()

This commit is contained in:
Philipp Holzer 2019-12-15 23:50:35 +01:00
parent 44bf0343e2
commit 33dae7eb94
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@
use Friendica\Core\Hook;
use Friendica\Core\L10n;
use Friendica\DI;
function rendertime_install() {
Hook::register('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end');
@ -30,7 +31,7 @@ function rendertime_init_1(&$a) {
function rendertime_page_end(Friendica\App $a, &$o)
{
$profiler = $a->getProfiler();
$profiler = DI::profiler();
$duration = microtime(true) - $profiler->get('start');