]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Profiler.php
Make EMailer util dynamic
[friendica.git] / src / Util / Profiler.php
index dc140469c671e945e42408a1b41ff5bd67fd14f9..c3fddfac70f4a3751d356ef2dca941b046c7c360 100644 (file)
@@ -2,8 +2,8 @@
 
 namespace Friendica\Util;
 
-use Friendica\Core\Config\Cache\ConfigCache;
-use Friendica\Core\Config\Configuration;
+use Friendica\Core\Config\Cache;
+use Friendica\Core\Config\IConfig;
 use Psr\Container\ContainerExceptionInterface;
 use Psr\Container\ContainerInterface;
 use Psr\Container\NotFoundExceptionInterface;
@@ -13,7 +13,7 @@ use Psr\Log\LoggerInterface;
  * A class to store profiling data
  * It can handle different logging data for specific functions or global performance measures
  *
- * It stores the data as log entries (@see LoggerInterface )
+ * It stores the data as log entries (@see LoggerInterface)
  */
 class Profiler implements ContainerInterface
 {
@@ -47,18 +47,18 @@ class Profiler implements ContainerInterface
        /**
         * Updates the enabling of the current profiler
         *
-        * @param Configuration $config
+        * @param IConfig $config
         */
-       public function update(Configuration $config)
+       public function update(IConfig $config)
        {
                $this->enabled = $config->get('system', 'profiler');
                $this->rendertime = $config->get('rendertime', 'callstack');
        }
 
        /**
-        * @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');
@@ -79,7 +79,7 @@ class Profiler implements ContainerInterface
                        return;
                }
 
-               $duration = (float) (microtime(true) - $timestamp);
+               $duration = floatval(microtime(true) - $timestamp);
 
                if (!isset($this->performance[$value])) {
                        // Prevent ugly E_NOTICE