diff options
author | Joas Schilling <coding@schilljs.com> | 2018-10-15 11:45:17 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-10-15 11:45:17 +0200 |
commit | 909745acfd3afc06babca27ad33e09be7bab2d0d (patch) | |
tree | d36ee83aaaba998771ae89e1687ec2d2ed2dc009 /lib | |
parent | 8177fdb0f67a7fdfc86c27b3995afd9e5adfdce8 (diff) | |
download | nextcloud-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.php | 12 |
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 */ |