소스 검색

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