Passed
Push — master ( f3f318...0ca85e )
by Mohammed
09:08 queued 07:19
created
src/helpers/Calculators.php 1 patch
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -205,13 +205,15 @@
 block discarded – undo
205 205
         $classC = [$arr[1],$arr[2],$arr[3]];
206 206
         //$classE = [$arr[1],$arr[2],$arr[3],$arr[4],$arr[5],$arr[6]];
207 207
 
208
-        if($arr[0]<=2)
209
-            $million = $this->millions[$arr[0]] ;
210
-        else
211
-            $million = $this->ones[$arr[0]] . ' ' . $this->millions['39'];
208
+        if($arr[0]<=2) {
209
+                    $million = $this->millions[$arr[0]] ;
210
+        } else {
211
+                    $million = $this->ones[$arr[0]] . ' ' . $this->millions['39'];
212
+        }
212 213
 
213
-        if($this->classC($classC)!='')
214
-            return $million . $this->config['connection_tool'] . $this->classC($classC);
214
+        if($this->classC($classC)!='') {
215
+                    return $million . $this->config['connection_tool'] . $this->classC($classC);
216
+        }
215 217
         return $million;
216 218
     }
217 219
 
Please login to merge, or discard this patch.