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/Application/EnvironmentManipulator.php')
-rw-r--r--core/Application/EnvironmentManipulator.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/Application/EnvironmentManipulator.php b/core/Application/EnvironmentManipulator.php
index 1740de6c44..d740096fd9 100644
--- a/core/Application/EnvironmentManipulator.php
+++ b/core/Application/EnvironmentManipulator.php
@@ -9,6 +9,7 @@
namespace Piwik\Application;
use Piwik\Application\Kernel\GlobalSettingsProvider;
+use Piwik\Application\Kernel\PluginList;
/**
* Used to manipulate Environment instances before the container is created.
@@ -25,6 +26,14 @@ interface EnvironmentManipulator
public function makeGlobalSettingsProvider();
/**
+ * Create a custom PluginList kernel object, overriding the default behavior.@deprecated
+ *
+ * @param GlobalSettingsProvider $globalSettingsProvider
+ * @return PluginList
+ */
+ public function makePluginList(GlobalSettingsProvider $globalSettingsProvider);
+
+ /**
* Invoked before the container is created.
*/
public function beforeContainerCreated();