From 16671831eff58dd8ce3e27b29b98957ec16cc7d1 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 10 Jan 2013 17:55:41 +0100 Subject: [PATCH] CS fix --- bin/composer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/composer b/bin/composer index 1100cf111..3b1fcab54 100755 --- a/bin/composer +++ b/bin/composer @@ -16,10 +16,10 @@ if (function_exists('ini_set')) { switch($unit) { case 'g': $value *= 1024; - //no break (cumulative multiplier) + // no break (cumulative multiplier) case 'm': $value *= 1024; - //no break (cumulative multiplier) + // no break (cumulative multiplier) case 'k': $value *= 1024; }