diff --git a/lib/public/WorkflowEngine/GenericEntityEvent.php b/lib/public/WorkflowEngine/GenericEntityEvent.php index d72093573b..f556eb93b2 100644 --- a/lib/public/WorkflowEngine/GenericEntityEvent.php +++ b/lib/public/WorkflowEngine/GenericEntityEvent.php @@ -51,7 +51,7 @@ class GenericEntityEvent implements IEntityEvent { * @since 18.0.0 */ public function getDisplayName(): string { - return $this->getDisplayName(); + return $this->displayName; } /** @@ -62,6 +62,6 @@ class GenericEntityEvent implements IEntityEvent { * @since 18.0.0 */ public function getEventName(): string { - return $this->getEventName(); + return $this->eventName; } }