Adds fallthrough comments to bin/composer (PSR-2 compliance)

main
Bryan J. Agee 12 years ago
parent c17aac04a9
commit 0db97259ba

@ -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;
}

Loading…
Cancel
Save