Skip to content

Commit

Permalink
Adds fallthrough comments to bin/composer (PSR-2 compliance)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanagee committed Jan 10, 2013
1 parent c17aac0 commit 0db9725
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/composer
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ if (function_exists('ini_set')) {
switch($unit) {
case 'g':
$value *= 1024;
//no break (cumulative multiplier)
case 'm':
$value *= 1024;
//no break (cumulative multiplier)
case 'k':
$value *= 1024;
}
Expand Down

0 comments on commit 0db9725

Please sign in to comment.