]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Process.php
Remove duplicate profile_uid key in App->profile array
[friendica.git] / src / Core / Process.php
index 035f4bf0af46fab7e533df0bc71e4945cc1f0411..b0345b05bb13c1a3395dff613c0e663d15a32ed9 100644 (file)
@@ -3,7 +3,7 @@
 namespace Friendica\Core;
 
 use Friendica\App;
-use Friendica\Core\Config\Configuration;
+use Friendica\Core\Config\IConfig;
 use Psr\Log\LoggerInterface;
 
 /**
@@ -28,7 +28,7 @@ final class Process
        private $mode;
 
        /**
-        * @var Configuration
+        * @var IConfig
         */
        private $config;
 
@@ -37,7 +37,7 @@ final class Process
         */
        private $basePath;
 
-       public function __construct(LoggerInterface $logger, App\Mode $mode, Configuration $config, string $basepath)
+       public function __construct(LoggerInterface $logger, App\Mode $mode, IConfig $config, string $basepath)
        {
                $this->logger   = $logger;
                $this->mode     = $mode;
@@ -46,7 +46,7 @@ final class Process
        }
 
        /**
-        * @brief Checks if the maximum number of database processes is reached
+        * Checks if the maximum number of database processes is reached
         *
         * @return bool Is the limit reached?
         */
@@ -86,7 +86,7 @@ final class Process
        }
 
        /**
-        * @brief Checks if the minimal memory is reached
+        * Checks if the minimal memory is reached
         *
         * @return bool Is the memory limit reached?
         */
@@ -130,7 +130,7 @@ final class Process
        }
 
        /**
-        * @brief Checks if the maximum load is reached
+        * Checks if the maximum load is reached
         *
         * @return bool Is the load reached?
         */