From e35ec52d7480937ffb0c625880f39ef1eb68fecc Mon Sep 17 00:00:00 2001 From: rabiibrahimi Date: Thu, 25 Sep 2025 10:37:43 +0100 Subject: [PATCH] Fix: remove extra whitespace in constant reference --- .../Espo/Core/Notification/DefaultAssignmentNotificator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Core/Notification/DefaultAssignmentNotificator.php b/application/Espo/Core/Notification/DefaultAssignmentNotificator.php index 243e2c7911..f84021f3ef 100644 --- a/application/Espo/Core/Notification/DefaultAssignmentNotificator.php +++ b/application/Espo/Core/Notification/DefaultAssignmentNotificator.php @@ -66,7 +66,7 @@ class DefaultAssignmentNotificator implements AssignmentNotificator ) { $userIds = $entity->getLinkMultipleIdList(self::FIELD_ASSIGNED_USERS); /** @var string[] $fetchedIds */ - $fetchedIds = $entity->getFetched(self:: FIELD_ASSIGNED_USERS . 'Ids') ?? []; + $fetchedIds = $entity->getFetched(self::FIELD_ASSIGNED_USERS . 'Ids') ?? []; foreach ($userIds as $userId) { if (in_array($userId, $fetchedIds)) {