diff --git a/src/components/workflows/transitions/dispatchers/Notify.php b/src/components/workflows/transitions/dispatchers/Notify.php index 14da472..a9a7003 100644 --- a/src/components/workflows/transitions/dispatchers/Notify.php +++ b/src/components/workflows/transitions/dispatchers/Notify.php @@ -28,5 +28,7 @@ public function __invoke(ITransitResult &$result, IEntity &$entityEdited): bool */ $notifier = new $notifierClass($this->__toArray()); $notifier->notify($entityEdited, $this->getContext(), $result); + + return true; } }