diff options
author | Thomas Lange <code@nerdmind.de> | 2021-10-24 18:23:51 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-10-24 18:47:16 +0200 |
commit | 0424f5fc59af574442749cd7a3d7090ee204cd2e (patch) | |
tree | 04d1f59cead31fde30a78856c5ce33e85151d58d /include/classes/BigPipe/Pagelet.php | |
parent | 1ccf59ac7f31751c93e58557af55cd405037f7fa (diff) | |
download | bigpipe-master.tar.gz bigpipe-master.tar.xz bigpipe-master.zip |
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.
Diffstat (limited to 'include/classes/BigPipe/Pagelet.php')
-rw-r--r-- | include/classes/BigPipe/Pagelet.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; |