Skip to content

Commit fd03601

Browse files
committed
feat: add stubbed quota response
1 parent 74b5921 commit fd03601

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/Testing/FakeFolder.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,25 @@ public function expunge(): array
136136
return [];
137137
}
138138

139+
/**
140+
* {@inheritDoc}
141+
*/
142+
public function quota(): array
143+
{
144+
return [
145+
'MESSAGES' => [
146+
'usage' => 0,
147+
'limit' => 0,
148+
],
149+
'STORAGE' => [
150+
'usage' => 0,
151+
'limit' => 0,
152+
],
153+
'usage' => 0,
154+
'limit' => 0,
155+
];
156+
}
157+
139158
/**
140159
* {@inheritDoc}
141160
*/

0 commit comments

Comments
 (0)