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>2022-11-09 11:12:57 +0300
committerGitHub <noreply@github.com>2022-11-09 11:12:57 +0300
commitdcf67850edaba1408ce4973196643b6506473379 (patch)
tree7c366b2668798f70a8220771b62522bd86a42f2d /plugins
parent57b33215b7c5b455468da65f370fefd2d13beed2 (diff)
Fix PHP8.2 deprecation messages (#19918)
* Fix PHP8.2 deprecation messages * fix another deprecation * fixes another deprecation
Diffstat (limited to 'plugins')
-rw-r--r--plugins/PrivacyManager/DoNotTrackHeaderChecker.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/PrivacyManager/DoNotTrackHeaderChecker.php b/plugins/PrivacyManager/DoNotTrackHeaderChecker.php
index 123654f05d..1591976e8e 100644
--- a/plugins/PrivacyManager/DoNotTrackHeaderChecker.php
+++ b/plugins/PrivacyManager/DoNotTrackHeaderChecker.php
@@ -21,6 +21,8 @@ use Piwik\Tracker\IgnoreCookie;
*/
class DoNotTrackHeaderChecker
{
+ protected $config;
+
/**
* @param Config $config
*/