summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-10-15 11:45:17 +0200
committerJoas Schilling <coding@schilljs.com>2018-10-15 11:45:17 +0200
commit909745acfd3afc06babca27ad33e09be7bab2d0d (patch)
treed36ee83aaaba998771ae89e1687ec2d2ed2dc009 /lib
parent8177fdb0f67a7fdfc86c27b3995afd9e5adfdce8 (diff)
downloadnextcloud-server-909745acfd3afc06babca27ad33e09be7bab2d0d.tar.gz
nextcloud-server-909745acfd3afc06babca27ad33e09be7bab2d0d.zip
Fix default types of activity event member variables
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Activity/Event.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/Activity/Event.php b/lib/private/Activity/Event.php
index 7efd6014aaf..c0210b2d6a7 100644
--- a/lib/private/Activity/Event.php
+++ b/lib/private/Activity/Event.php
@@ -46,21 +46,21 @@ class Event implements IEvent {
/** @var array */
protected $subjectParameters = [];
/** @var string */
- protected $subjectParsed;
+ protected $subjectParsed = '';
/** @var string */
- protected $subjectRich;
+ protected $subjectRich = '';
/** @var array */
- protected $subjectRichParameters;
+ protected $subjectRichParameters = [];
/** @var string */
protected $message = '';
/** @var array */
protected $messageParameters = [];
/** @var string */
- protected $messageParsed;
+ protected $messageParsed = '';
/** @var string */
- protected $messageRich;
+ protected $messageRich = '';
/** @var array */
- protected $messageRichParameters;
+ protected $messageRichParameters = [];
/** @var string */
protected $objectType = '';
/** @var int */