Skip to content

Commit 6d0b94d

Browse files
committed
Merge branch '6.0' into 6.1
* 6.0: Fix CS Fix CS
2 parents d359ed2 + 854c68b commit 6d0b94d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

File/UploadedFile.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,11 @@ private static function parseFilesize(string $size): int|float
234234

235235
switch (substr($size, -1)) {
236236
case 't': $max *= 1024;
237+
// no break
237238
case 'g': $max *= 1024;
239+
// no break
238240
case 'm': $max *= 1024;
241+
// no break
239242
case 'k': $max *= 1024;
240243
}
241244

0 commit comments

Comments
 (0)