X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FProfiler.php;h=24289678c266a41450b751fff3b6132ff8355cd7;hb=c33611c484e2cf5a3c626566588e26a1d14e12c6;hp=0f28f23d0ab9c31ab7adc4f40171e248a6c74a5b;hpb=c03fb998f4b979e5fe61778802d384792e84626c;p=friendica.git diff --git a/src/Util/Profiler.php b/src/Util/Profiler.php index 0f28f23d0a..24289678c2 100644 --- a/src/Util/Profiler.php +++ b/src/Util/Profiler.php @@ -1,6 +1,6 @@ enabled = $config->get('system', 'profiler'); $this->rendertime = $config->get('rendertime', 'callstack'); } /** - * @param Cache $configCache The configuration cache + * @param \Friendica\Core\Config\ValueObject\Cache $configCache The configuration cache */ public function __construct(Cache $configCache) { @@ -198,7 +198,7 @@ class Profiler implements ContainerInterface $this->performance['network'] = 0; $this->performance['file'] = 0; $this->performance['rendering'] = 0; - $this->performance['parser'] = 0; + $this->performance['session'] = 0; $this->performance['marktime'] = 0; $this->performance['marktime'] = microtime(true); $this->performance['classcreate'] = 0; @@ -220,7 +220,7 @@ class Profiler implements ContainerInterface $this->callstack['network'] = []; $this->callstack['file'] = []; $this->callstack['rendering'] = []; - $this->callstack['parser'] = []; + $this->callstack['session'] = []; } /**