From 1ccf59ac7f31751c93e58557af55cd405037f7fa Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sun, 24 Oct 2021 17:38:14 +0200 Subject: Rename several properties and method parameters * Rename "ID" property of the Item class to "id" * Rename "customID" constructor parameter to "id" * Rename "resourceURL" property of the Resource class to "url" * Rename "resourceURL" constructor parameter to "url" --- include/classes/BigPipe/Pagelet.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/classes/BigPipe/Pagelet.php') diff --git a/include/classes/BigPipe/Pagelet.php b/include/classes/BigPipe/Pagelet.php index 985be54..daca9df 100644 --- a/include/classes/BigPipe/Pagelet.php +++ b/include/classes/BigPipe/Pagelet.php @@ -35,8 +35,8 @@ 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 $customID = NULL, int $priority = self::PRIORITY_NORMAL) { - $this->ID = $customID ?? spl_object_hash($this); + public function __construct(string $id = NULL, int $priority = self::PRIORITY_NORMAL) { + $this->id = $id ?? spl_object_hash($this); $this->priority = $priority; $this->resources = array_pad($this->resources, 2, []); -- cgit v1.2.3