From b632b7f4aeab4093b882f43265a11cb682bdcbcf Mon Sep 17 00:00:00 2001 From: jeyroik Date: Wed, 29 Apr 2020 17:23:33 +0300 Subject: [PATCH] fix --- src/components/workflows/transitions/dispatchers/Notify.php | 2 ++ 1 file changed, 2 insertions(+) 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; } }