Skip to content

Commit efd4f8d

Browse files
committed
Contact: fixed uninitialized properties
1 parent 6a4227d commit efd4f8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MailLibrary/ContactList.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
class ContactList implements Iterator, Countable
1212
{
1313
/** @var Contact[] */
14-
protected $contacts;
14+
protected $contacts = [];
1515

16-
protected $builtContacts;
16+
protected $builtContacts = [];
1717

1818
public function addContact($mailbox = NULL, $host = NULL, $personal = NULL, $adl = NULL)
1919
{

0 commit comments

Comments
 (0)