Skip to content

Commit f85180d

Browse files
committed
Merge branch '4.4' into 5.4
* 4.4: Fix CS
2 parents 7a2e3c0 + 9bc83c2 commit f85180d

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
@@ -253,8 +253,11 @@ private static function parseFilesize(string $size)
253253

254254
switch (substr($size, -1)) {
255255
case 't': $max *= 1024;
256+
// no break
256257
case 'g': $max *= 1024;
258+
// no break
257259
case 'm': $max *= 1024;
260+
// no break
258261
case 'k': $max *= 1024;
259262
}
260263

0 commit comments

Comments
 (0)