Skip to content

Commit

Permalink
Merge pull request #12353 from nextcloud/backport/11838/fix-default-t…
Browse files Browse the repository at this point in the history
…ypes-of-members

[stable14] Fix default types of activity event member variables
  • Loading branch information
MorrisJobke authored Nov 8, 2018
2 parents 911321d + f48f438 commit 5ad40b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/private/Activity/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,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 */
Expand Down

0 comments on commit 5ad40b2

Please sign in to comment.