Skip to content

Commit 48f34fd

Browse files
committed
Move comment from interface
1 parent f87faf0 commit 48f34fd

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Mailbox.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ public function disconnect(): void
173173
*/
174174
public function inbox(): FolderInterface
175175
{
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
176178
return $this->folders()->find('INBOX');
177179
}
178180

src/MailboxInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ public function disconnect(): void;
3838

3939
/**
4040
* 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
4541
*/
4642
public function inbox(): FolderInterface;
4743

0 commit comments

Comments
 (0)