]> git.mxchange.org Git - friendica.git/commitdiff
minor phpdoc fixings
authorPhilipp Holzer <admin+github@philipp.info>
Mon, 15 Jul 2019 18:54:33 +0000 (20:54 +0200)
committerPhilipp Holzer <admin+github@philipp.info>
Mon, 15 Jul 2019 18:54:33 +0000 (20:54 +0200)
src/Core/Config/PreloadConfiguration.php
src/Core/Config/PreloadPConfiguration.php
src/Model/Config/PConfig.php

index b5823c614473143f3b46363305b82ed1b7a93ac7..d54f1b063637d6b12579063f505b4ec25f972207 100644 (file)
@@ -5,7 +5,7 @@ namespace Friendica\Core\Config;
 use Friendica\Model;
 
 /**
- * This class implements the preload Time configuration, which will cache
+ * This class implements the preload configuration, which will cache
  * all config values per call in a cache.
  *
  * Minimizes the number of database queries to retrieve configuration values at the cost of memory.
index 1682b7e21bc0b40f3a07dbfefc3fb341928abfea..1c2dfba4f7c03326dbdcbcee96a05b58b8e3e27a 100644 (file)
@@ -5,7 +5,7 @@ namespace Friendica\Core\Config;
 use Friendica\Model;
 
 /**
- * This class implements the preload Time configuration, which will cache
+ * This class implements the preload configuration, which will cache
  * all user config values per call in a cache.
  *
  * Minimizes the number of database queries to retrieve configuration values at the cost of memory.
index c76e41cb6c3f1152bf1c309dc75dbe4492026907..2969272cc69caf4931bb947c54fbf0b282b16abe 100644 (file)
@@ -29,7 +29,6 @@ class PConfig extends DbaConfig
                }
 
                while ($config = $this->dba->fetch($configs)) {
-
                        $key   = $config['k'];
                        $value = $this->toConfigValue($config['v']);