1
0
Fork 0

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

pull/1470/head
Bryan J. Agee 2013-01-10 08:20:45 -08:00
parent c17aac04a9
commit 0db97259ba
1 changed files with 2 additions and 0 deletions

View File

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