From 0e3faf1257855cce7c4eabc89207a1d13a2de6bc Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Thu, 25 Jan 2024 16:06:28 +0100 Subject: [PATCH] BOUNCER_NAME => BOUNCER_LABEL --- bouncer/src/Target.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bouncer/src/Target.php b/bouncer/src/Target.php index d8d2c4c..3191f0f 100644 --- a/bouncer/src/Target.php +++ b/bouncer/src/Target.php @@ -294,7 +294,7 @@ class Target public function getLabel() { - return $this->label ?? $this->getLabel(); + return $this->label ?? $this->getName(); } public function setLabel(string $label): self