From 693d6edfbf716a75140ef60fe41492abb3e0a67d Mon Sep 17 00:00:00 2001 From: Dag Date: Sun, 4 Sep 2022 04:50:01 +0200 Subject: [PATCH] fix: php7.3 parser error in Configuration.php (#2999) Dont fail a basic lint so that the proper error message can be shown when on unsupported versions. --- lib/Configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Configuration.php b/lib/Configuration.php index 4b24452e..3c6be630 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -21,7 +21,7 @@ final class Configuration { private const VERSION = 'dev.2022-06-14'; - private static array $config = []; + private static $config = []; private function __construct() {