Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Mailpit.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ class Mailpit extends Module
/**
* Raw email header data converted to JSON.
*/
protected array $fetchedEmails;
protected array $fetchedEmails = [];

/**
* Currently selected set of email headers to work with.
*/
protected array $currentInbox;
protected array $currentInbox = [];

/**
* Starts as the same data as the current inbox, but items are removed as they're used.
*/
protected array $unreadInbox;
protected array $unreadInbox = [];

/**
* Contains the currently open email on which test operations are conducted.
Expand Down