Skip to content

Commit 6f280b4

Browse files
Merge branch '5.4' into 6.0
* 5.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 [Messenger] move resetting services at worker stopped into ResetServicesListener [Mailer] Fix Error Handling for OhMySMTP Bridge Fix for missing sender name in case with usage of the EnvelopeListener
2 parents 8089e40 + de99efe commit 6f280b4

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
@@ -192,11 +192,8 @@ private static function getMaxFilesize(): int|float
192192

193193
switch (substr($iniMax, -1)) {
194194
case 't': $max *= 1024;
195-
// no break
196195
case 'g': $max *= 1024;
197-
// no break
198196
case 'm': $max *= 1024;
199-
// no break
200197
case 'k': $max *= 1024;
201198
}
202199

Util/ServerParams.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,8 @@ public function getPostMaxSize(): int|float|null
5858

5959
switch (substr($iniMax, -1)) {
6060
case 't': $max *= 1024;
61-
// no break
6261
case 'g': $max *= 1024;
63-
// no break
6462
case 'm': $max *= 1024;
65-
// no break
6663
case 'k': $max *= 1024;
6764
}
6865

0 commit comments

Comments
 (0)