From 0db97259ba4fa6d9a6b39e5f44b15a673e966386 Mon Sep 17 00:00:00 2001 From: "Bryan J. Agee" Date: Thu, 10 Jan 2013 08:20:45 -0800 Subject: [PATCH] Adds fallthrough comments to bin/composer (PSR-2 compliance) --- bin/composer | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/composer b/bin/composer index 5899be19c..1100cf111 100755 --- a/bin/composer +++ b/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; }