From 7babe9d2a66d12ae5359ff15f02c1d6b03fa2e8d Mon Sep 17 00:00:00 2001 From: Shish Date: Sun, 14 Mar 2021 23:56:23 +0000 Subject: [PATCH] format --- core/polyfills.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/polyfills.php b/core/polyfills.php index a2785f0f..e3ae2464 100644 --- a/core/polyfills.php +++ b/core/polyfills.php @@ -521,9 +521,12 @@ function parse_shorthand_int(string $limit): int /** @noinspection PhpMissingBreakStatementInspection */ case 't': $value *= 1024; // fall through /** @noinspection PhpMissingBreakStatementInspection */ + // no break case 'g': $value *= 1024; // fall through /** @noinspection PhpMissingBreakStatementInspection */ + // no break case 'm': $value *= 1024; // fall through + // no break case 'k': $value *= 1024; break; default: $value = -1; }