diff options
author | provokateurin <kate@provokateurin.de> | 2025-03-12 14:42:37 +0100 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2025-03-17 06:46:12 +0100 |
commit | 4f27d824713fc317040a1af3d47599e98df2e1fd (patch) | |
tree | a482caaa5afcc5f8c169a74334d2dcdd7f3f92c1 /lib/private/Activity/Event.php | |
parent | a59c89eb6ac4ca7f2e24d04fdb11795186b39c58 (diff) | |
download | nextcloud-server-backport/51442/stable31.tar.gz nextcloud-server-backport/51442/stable31.zip |
fix(RichObjectStrings): Make exception messages for invalid parameters more useful for debuggingbackport/51442/stable31
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private/Activity/Event.php')
-rw-r--r-- | lib/private/Activity/Event.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Activity/Event.php b/lib/private/Activity/Event.php index 810af5c0612..54274acea6b 100644 --- a/lib/private/Activity/Event.php +++ b/lib/private/Activity/Event.php @@ -34,7 +34,7 @@ class Event implements IEvent { protected $subjectParsed = ''; /** @var string */ protected $subjectRich = ''; - /** @var array */ + /** @var array<string, array<string, string>> */ protected $subjectRichParameters = []; /** @var string */ protected $message = ''; @@ -44,7 +44,7 @@ class Event implements IEvent { protected $messageParsed = ''; /** @var string */ protected $messageRich = ''; - /** @var array */ + /** @var array<string, array<string, string>> */ protected $messageRichParameters = []; /** @var string */ protected $objectType = ''; |