瀏覽代碼

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

Bryan J. Agee 13 年之前
父節點
當前提交
0db97259ba
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      bin/composer

+ 2 - 0
bin/composer

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