mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +08:00
Bugfix: PHP 7 issue with typed ?array
This commit is contained in:
parent
e4b1950dbe
commit
a313664b64
1 changed files with 3 additions and 4 deletions
|
@ -71,10 +71,9 @@ class Message implements \JsonSerializable
|
|||
$UnsubsribeLinks = [],
|
||||
$aThreads = [];
|
||||
|
||||
private ?array
|
||||
$DraftInfo = null,
|
||||
$pgpSigned = null,
|
||||
$pgpEncrypted = null;
|
||||
private ?array $DraftInfo = null;
|
||||
private ?array $pgpSigned = null;
|
||||
private ?array $pgpEncrypted = null;
|
||||
|
||||
private ?\MailSo\Mime\EmailCollection
|
||||
$oFrom = null,
|
||||
|
|
Loading…
Reference in a new issue