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 2d88204 commit ee66636Copy full SHA for ee66636
src/Folder.php
@@ -161,7 +161,9 @@ public function select(bool $force = false): void
161
public function quota(): array
162
{
163
if (! in_array('QUOTA', $this->mailbox->capabilities())) {
164
- throw new ImapCapabilityException('Unable to fetch mailbox quotas. IMAP server does not support QUOTA capability.');
+ throw new ImapCapabilityException(
165
+ 'Unable to fetch mailbox quotas. IMAP server does not support QUOTA capability.'
166
+ );
167
}
168
169
$responses = $this->mailbox->connection()->quotaRoot($this->path);
0 commit comments