aboutsummaryrefslogtreecommitdiffstats
path: root/include/classes/BigPipe/Pagelet.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2018-01-26 00:58:15 +0100
committerThomas Lange <code@nerdmind.de>2018-01-26 14:00:00 +0100
commitaa8b6c982673f3c2ffcb27cdada534c7acdf302b (patch)
tree38775e3c8502e402c244848836c6dfdac2553292 /include/classes/BigPipe/Pagelet.php
parent061f6f9e1a3c038b6fe7ff9f9de14afd0962894b (diff)
downloadbigpipe-aa8b6c982673f3c2ffcb27cdada534c7acdf302b.tar.gz
bigpipe-aa8b6c982673f3c2ffcb27cdada534c7acdf302b.tar.xz
bigpipe-aa8b6c982673f3c2ffcb27cdada534c7acdf302b.zip
Remove static $count property and use spl_object_hash() instead
Diffstat (limited to 'include/classes/BigPipe/Pagelet.php')
-rw-r--r--include/classes/BigPipe/Pagelet.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/classes/BigPipe/Pagelet.php b/include/classes/BigPipe/Pagelet.php
index 101ec34..441c520 100644
--- a/include/classes/BigPipe/Pagelet.php
+++ b/include/classes/BigPipe/Pagelet.php
@@ -16,7 +16,6 @@ class Pagelet extends Item {
private $dependencies = [];
private $tagname = 'div';
private $tagHTML = '';
- private static $count = 0;
#===============================================================================
# Priorities for pagelet sorting
@@ -37,7 +36,7 @@ class Pagelet extends Item {
const PHASE_DONE = 4; # After the static JS code has been executed
public function __construct($customID = NULL, $priority = self::PRIORITY_NORMAL) {
- $this->ID = $customID ?? 'P'.++self::$count;
+ $this->ID = $customID ?? spl_object_hash($this);
$this->priority = $priority;
$this->resources = array_pad($this->resources, 2, []);