Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/core/Config.php b/core/Config.php
index 6e4f444817..d56bdeac5d 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -291,26 +291,6 @@ class Config
}
/**
- * Clear in-memory configuration so it can be reloaded
- * @deprecated since v2.12.0
- */
- public function clear()
- {
- $this->reload();
- }
-
- /**
- * Read configuration from files into memory
- *
- * @throws Exception if local config file is not readable; exits for other errors
- * @deprecated since v2.12.0
- */
- public function init()
- {
- $this->reload();
- }
-
- /**
* Reloads config data from disk.
*
* @throws \Exception if the global config file is not found and this is a tracker request, or
@@ -321,9 +301,6 @@ class Config
$this->settings->reload($pathGlobal, $pathLocal, $pathCommon);
}
- /**
- * @deprecated
- */
public function existsLocalConfig()
{
return is_readable($this->getLocalPath());