Skip to content

Commit de99efe

Browse files
Merge branch '4.4' into 5.4
* 4.4: [PropertyInfo] CS fix [Serializer] Try all possible denormalization route with union types when ALLOW_EXTRA_ATTRIBUTES=false CS fix [Cache] Respect $save option in ChainAdapter [ExpressionLanguage] fix tests (bis) [ExpressionLanguage] fix tests [Cache] Respect $save option in ArrayAdapter [HttpKernel] Disable session tracking while collecting profiler data [MonologBridge] Fixed support of elasticsearch 7.+ in ElasticsearchLogstashHandler [DoctrineBridge] Extend type guessing on enum fields Fix for missing sender name in case with usage of the EnvelopeListener
2 parents 84093ae + 12fc5eb commit de99efe

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
@@ -198,11 +198,8 @@ private static function getMaxFilesize()
198198

199199
switch (substr($iniMax, -1)) {
200200
case 't': $max *= 1024;
201-
// no break
202201
case 'g': $max *= 1024;
203-
// no break
204202
case 'm': $max *= 1024;
205-
// no break
206203
case 'k': $max *= 1024;
207204
}
208205

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)