From 377b5fab6aefa79289ca6cf3609972040cdd06ba Mon Sep 17 00:00:00 2001 From: Florian Moser Date: Sun, 1 Oct 2023 16:59:42 +0000 Subject: [PATCH] fix: Fix dangerous code-style --- src/EventGeneration/EventTarget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventGeneration/EventTarget.php b/src/EventGeneration/EventTarget.php index 4679d2ae..c1a625b2 100644 --- a/src/EventGeneration/EventTarget.php +++ b/src/EventGeneration/EventTarget.php @@ -39,7 +39,7 @@ class EventTarget public function __construct() { - $this->identifier = static::$nextIdentifier++; + $this->identifier = self::$nextIdentifier++; } /**