From 0424f5fc59af574442749cd7a3d7090ee204cd2e Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sun, 24 Oct 2021 18:23:51 +0200 Subject: Fix a bug in the Item constructor parameter list The id parameter of the Pagelet and Resource constructor doesn't accept NULL values anymore (since 76cdd118d68bda3b7b29b192c7bf3d6e02bd6079). Therefore, allow NULL values by using the parameter type "?string" instead of "string" to allow either string values or NULL. --- include/classes/BigPipe/Resource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/classes/BigPipe/Resource.php') diff --git a/include/classes/BigPipe/Resource.php b/include/classes/BigPipe/Resource.php index 92b61ef..b6f3b8c 100644 --- a/include/classes/BigPipe/Resource.php +++ b/include/classes/BigPipe/Resource.php @@ -33,7 +33,7 @@ abstract class Resource extends Item { #=============================================================================== # Build resource #=============================================================================== - public function __construct(string $id, int $type, string $url) { + public function __construct(?string $id, int $type, string $url) { $this->id = $id ?? spl_object_hash($this); $this->type = $type; $this->url = $url; -- cgit v1.2.3