From 76007b6ee9d92833f2f674b03fa430cbc17d901c Mon Sep 17 00:00:00 2001 From: El RIDO Date: Fri, 10 May 2019 22:21:03 +0200 Subject: [PATCH] fixing class compatibility (why is this no longer enforced in PHP > 7.1?) --- lib/Data/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Data/Database.php b/lib/Data/Database.php index 337319e7..0c39a296 100644 --- a/lib/Data/Database.php +++ b/lib/Data/Database.php @@ -67,7 +67,7 @@ class Database extends AbstractData * @throws Exception * @return Database */ - public static function getInstance($options = null) + public static function getInstance(array $options) { // if needed initialize the singleton if (!(self::$_instance instanceof self)) {