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:
authorStefan Giehl <stefan@matomo.org>2020-09-03 04:51:18 +0300
committerGitHub <noreply@github.com>2020-09-03 04:51:18 +0300
commit3565da78bff718f201247fc2f692c0be29220fde (patch)
treee8268373b284c293c307935a8bfa20d5cd920b48 /plugins/CustomJsTracker
parent21cafb0533d07acbe0a574e23bd972b20d72aa90 (diff)
Updates php-di to 6.2.1 (#16311)
Diffstat (limited to 'plugins/CustomJsTracker')
-rw-r--r--plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php b/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php
index 73fceb8d47..487b5f37e4 100644
--- a/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php
+++ b/plugins/CustomJsTracker/tests/Integration/TrackerUpdaterTest.php
@@ -236,9 +236,9 @@ var myArray = [];
{
return [
'observers.global' => \DI\add([
- ['CustomJsTracker.trackerJsChanged', function ($path) {
+ ['CustomJsTracker.trackerJsChanged', \DI\value(function ($path) {
$this->trackerJsChangedEventPath = $path;
- }],
+ })],
]),
];
}