Fix default types of activity event member variables

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2018-10-15 11:45:17 +02:00
parent 8177fdb0f6
commit 909745acfd
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
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 */