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/Settings/Storage/Factory.php')
-rw-r--r--core/Settings/Storage/Factory.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/Settings/Storage/Factory.php b/core/Settings/Storage/Factory.php
index 2ca3deb17c..8336c58f3e 100644
--- a/core/Settings/Storage/Factory.php
+++ b/core/Settings/Storage/Factory.php
@@ -125,7 +125,13 @@ class Factory
return new Storage(new Backend\NullBackend($key));
}
- private function makeStorage(BackendInterface $backend)
+ /**
+ * Makes a new storage object based on a custom backend interface.
+ *
+ * @param BackendInterface $backend
+ * @return Storage
+ */
+ public function makeStorage(BackendInterface $backend)
{
if (SettingsServer::isTrackerApiRequest()) {
$backend = new Backend\Cache($backend);