Completed
Push — master ( 78e634...2972d6 )
by Richard
02:04
created
src/TSSFunction/Math.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,9 @@
 block discarded – undo
16 16
 
17 17
     public function run(array $args, \DomElement $element) {
18 18
         $result = $args[0];
19
-        for ($i = 1; $i < count($args); $i++) $result = $this->getModeResult($args[$i], $result);
19
+        for ($i = 1; $i < count($args); $i++) {
20
+        	$result = $this->getModeResult($args[$i], $result);
21
+        }
20 22
         return $result;
21 23
     }
22 24
 
Please login to merge, or discard this patch.