Fix default types of activity event member variables
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
8177fdb0f6
commit
909745acfd
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue