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-10-08 22:17:01 +0300
committerGitHub <noreply@github.com>2020-10-08 22:17:01 +0300
commitf4bf97860238a9566b2581acfa0afd89366f09ec (patch)
tree982829f4cdd1c47f370a4ebf7b27b6d9ed20efaf
parent1907f8ab228c630b754a207b77812ca9d4737b4d (diff)
Make method signature compatible with PHP 8 (#16550)
-rw-r--r--core/Singleton.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Singleton.php b/core/Singleton.php
index 55cd4e25e7..6063715921 100644
--- a/core/Singleton.php
+++ b/core/Singleton.php
@@ -24,7 +24,7 @@ class Singleton
{
}
- final private function __clone()
+ final protected function __clone()
{
}