Merge pull request #11838 from nextcloud/bugfix/noid/fix-default-types-of-members

Fix default types of activity event member variables
This commit is contained in:
Roeland Jago Douma 2018-10-15 14:09:44 +02:00 committed by GitHub
commit 6f835aff31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -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 */