diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/WorkflowEngine/GenericEntityEvent.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/WorkflowEngine/GenericEntityEvent.php b/lib/public/WorkflowEngine/GenericEntityEvent.php index d72093573bf..f556eb93b22 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; } } |