X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FProfiler.php;h=240273bde3ce319594cbe4c6a4adc7de6dcada33;hb=05bd0d0b671ad509465fa6cddabc3c2a07c796a7;hp=e4061f51941d251ef2d448fb1bfcaa723e5c3ac2;hpb=cb80108957f16011b5b7b1b8961da8cbd78d60c9;p=friendica.git diff --git a/src/Util/Profiler.php b/src/Util/Profiler.php index e4061f5194..240273bde3 100644 --- a/src/Util/Profiler.php +++ b/src/Util/Profiler.php @@ -1,8 +1,27 @@ . + * + */ namespace Friendica\Util; -use Friendica\Core\Config\Cache\ConfigCache; +use Friendica\Core\Config\Cache; use Friendica\Core\Config\IConfig; use Psr\Container\ContainerExceptionInterface; use Psr\Container\ContainerInterface; @@ -56,9 +75,9 @@ class Profiler implements ContainerInterface } /** - * @param ConfigCache $configCache The configuration cache + * @param Cache $configCache The configuration cache */ - public function __construct(ConfigCache $configCache) + public function __construct(Cache $configCache) { $this->enabled = $configCache->get('system', 'profiler'); $this->rendertime = $configCache->get('rendertime', 'callstack');