Prevent scrutinizer-ci from complaining about these fall-thoughs.

This commit is contained in:
jgen 2014-04-24 01:36:04 -04:00
parent 506e699f8a
commit afc01fda5f

View file

@ -167,8 +167,11 @@ function parse_shorthand_int($limit) {
$value = $m[1];
if (isset($m[2])) {
switch(strtolower($m[2])) {
/** @noinspection PhpMissingBreakStatementInspection */
case 'g': $value *= 1024; // fall through
/** @noinspection PhpMissingBreakStatementInspection */
case 'm': $value *= 1024; // fall through
/** @noinspection PhpMissingBreakStatementInspection */
case 'k': $value *= 1024; break;
default: $value = -1;
}