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

This commit is contained in:
nupplaPhil 2019-12-15 23:50:35 +01:00
parent e2b2778e0a
commit 181529f3df
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
12 changed files with 22 additions and 30 deletions

View file

@ -75,7 +75,7 @@ class Renderer
exit();
}
$a->getProfiler()->saveTimestamp($stamp1, "rendering", System::callstack());
DI::profiler()->saveTimestamp($stamp1, "rendering", System::callstack());
return $output;
}
@ -102,7 +102,7 @@ class Renderer
exit();
}
$a->getProfiler()->saveTimestamp($stamp1, "file", System::callstack());
DI::profiler()->saveTimestamp($stamp1, "file", System::callstack());
return $template;
}