Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
enumag committed Jul 19, 2017
1 parent 2dccf07 commit abd2097
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Constraint/FileValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,11 @@ public static function getMaxFilesize()
}
switch (substr($iniMax, -1)) {
case 't': $max *= 1024;
// no break
case 'g': $max *= 1024;
// no break
case 'm': $max *= 1024;
// no break
case 'k': $max *= 1024;
}

Expand Down

0 comments on commit abd2097

Please sign in to comment.