Skip to content

Commit 12fc5eb

Browse files
CS fix
1 parent 0623dd4 commit 12fc5eb

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

Extension/Core/Type/FileType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,8 @@ private static function getMaxFilesize()
200200

201201
switch (substr($iniMax, -1)) {
202202
case 't': $max *= 1024;
203-
// no break
204203
case 'g': $max *= 1024;
205-
// no break
206204
case 'm': $max *= 1024;
207-
// no break
208205
case 'k': $max *= 1024;
209206
}
210207

Util/ServerParams.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,8 @@ public function getPostMaxSize()
6262

6363
switch (substr($iniMax, -1)) {
6464
case 't': $max *= 1024;
65-
// no break
6665
case 'g': $max *= 1024;
67-
// no break
6866
case 'm': $max *= 1024;
69-
// no break
7067
case 'k': $max *= 1024;
7168
}
7269

0 commit comments

Comments
 (0)