From b7298eaa44ded1c41a5a459f00cda5880e5c5b81 Mon Sep 17 00:00:00 2001 From: Diogo Peralta Cordeiro Date: Mon, 20 Sep 2021 17:05:46 +0100 Subject: [PATCH] [ENTITY] ActorTag: use getter for tag name on toString --- src/Entity/ActorTag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/ActorTag.php b/src/Entity/ActorTag.php index 5aec526f8d..ea76711d3a 100644 --- a/src/Entity/ActorTag.php +++ b/src/Entity/ActorTag.php @@ -113,6 +113,6 @@ class ActorTag extends Entity public function __toString() { - return $this->tag; + return $this->getTag(); } }