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/Pagelet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/classes/BigPipe/Pagelet.php') diff --git a/include/classes/BigPipe/Pagelet.php b/include/classes/BigPipe/Pagelet.php index daca9df..d6f2103 100644 --- a/include/classes/BigPipe/Pagelet.php +++ b/include/classes/BigPipe/Pagelet.php @@ -35,7 +35,7 @@ class Pagelet extends Item { const PHASE_LOADJS = 3; # After all the JS resources have been loaded const PHASE_DONE = 4; # After the static JS code has been executed - public function __construct(string $id = NULL, int $priority = self::PRIORITY_NORMAL) { + public function __construct(?string $id = NULL, int $priority = self::PRIORITY_NORMAL) { $this->id = $id ?? spl_object_hash($this); $this->priority = $priority; -- cgit v1.2.3