[ENTITY] ActorTag: use getter for tag name on toString

This commit is contained in:
Diogo Peralta Cordeiro 2021-09-20 17:05:46 +01:00
parent 9e4c43e8fd
commit b7298eaa44
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
1 changed files with 1 additions and 1 deletions

View File

@ -113,6 +113,6 @@ class ActorTag extends Entity
public function __toString()
{
return $this->tag;
return $this->getTag();
}
}