]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Config/JITConfigAdapter.php
Fix PHPDoc comments project-wide
[friendica.git] / src / Core / Config / JITConfigAdapter.php
index b985d91c2122ade49efee07753ecfccaa9c1911a..ed5f1a3f673ed0b623af7182972335143181c0e7 100644 (file)
@@ -4,8 +4,6 @@ namespace Friendica\Core\Config;
 use Friendica\BaseObject;
 use Friendica\Database\DBA;
 
-require_once 'include/dba.php';
-
 /**
  * JustInTime Configuration Adapter
  *
@@ -65,13 +63,13 @@ class JITConfigAdapter extends BaseObject implements IConfigAdapter
                        $this->in_db[$cat][$k] = true;
                        return $value;
                } elseif (isset($a->config[$cat][$k])) {
-                       // Assign the value (mostly) from config/local.ini.php file to the cache
+                       // Assign the value (mostly) from config/local.config.php file to the cache
                        $this->cache[$cat][$k] = $a->config[$cat][$k];
                        $this->in_db[$cat][$k] = false;
 
                        return $a->config[$cat][$k];
                } elseif (isset($a->config[$k])) {
-                       // Assign the value (mostly) from config/local.ini.php file to the cache
+                       // Assign the value (mostly) from config/local.config.php file to the cache
                        $this->cache[$k] = $a->config[$k];
                        $this->in_db[$k] = false;