summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-10-15 14:09:44 +0200
committerGitHub <noreply@github.com>2018-10-15 14:09:44 +0200
commit6f835aff31549a30d63e8bdcad4854f13120dbe5 (patch)
tree78f159902a611ee7e434ed7a090aaa1a78bde885 /lib
parent1ce86722763ac2c3aa299de67955005024e3ee5c (diff)
parent909745acfd3afc06babca27ad33e09be7bab2d0d (diff)
downloadnextcloud-server-6f835aff31549a30d63e8bdcad4854f13120dbe5.tar.gz
nextcloud-server-6f835aff31549a30d63e8bdcad4854f13120dbe5.zip
Merge pull request #11838 from nextcloud/bugfix/noid/fix-default-types-of-members
Fix default types of activity event member variables
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 */