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 */ /** @var array */
protected $subjectParameters = []; protected $subjectParameters = [];
/** @var string */ /** @var string */
protected $subjectParsed; protected $subjectParsed = '';
/** @var string */ /** @var string */
protected $subjectRich; protected $subjectRich = '';
/** @var array */ /** @var array */
protected $subjectRichParameters; protected $subjectRichParameters = [];
/** @var string */ /** @var string */
protected $message = ''; protected $message = '';
/** @var array */ /** @var array */
protected $messageParameters = []; protected $messageParameters = [];
/** @var string */ /** @var string */
protected $messageParsed; protected $messageParsed = '';
/** @var string */ /** @var string */
protected $messageRich; protected $messageRich = '';
/** @var array */ /** @var array */
protected $messageRichParameters; protected $messageRichParameters = [];
/** @var string */ /** @var string */
protected $objectType = ''; protected $objectType = '';
/** @var int */ /** @var int */