We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87faf0 commit 48f34fdCopy full SHA for 48f34fd
src/Mailbox.php
@@ -173,6 +173,8 @@ public function disconnect(): void
173
*/
174
public function inbox(): FolderInterface
175
{
176
+ // "INBOX" is a special name reserved for the user's primary mailbox.
177
+ // See: https://datatracker.ietf.org/doc/html/rfc9051#section-5.1
178
return $this->folders()->find('INBOX');
179
}
180
src/MailboxInterface.php
@@ -38,10 +38,6 @@ public function disconnect(): void;
38
39
/**
40
* Get the mailbox's inbox folder.
41
- *
42
- * "INBOX" is a special name reserved for the user's primary mailbox.
43
44
- * @see https://datatracker.ietf.org/doc/html/rfc9051#section-5.1
45
46
public function inbox(): FolderInterface;
47
0 commit comments