Passed
Push — master ( b55be9...f6f22e )
by Christopher
01:29
created
src/SimpleTypeBase.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     {
97 97
 
98 98
         $v = $this->fixWhitespace($v, $this->whiteSpace);
99
-        return $this->fixFractionDigits($v,$this->fractionDigits);
99
+        return $this->fixFractionDigits($v, $this->fractionDigits);
100 100
     }
101 101
 
102 102
     protected function fixWhitespace($val, $handle = "preserve")
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
         }
114 114
     }
115 115
 
116
-    protected function fixFractionDigits($val,$fractionDigits = null){
117
-        if(null ==$fractionDigits ) {
116
+    protected function fixFractionDigits($val, $fractionDigits = null) {
117
+        if (null == $fractionDigits) {
118 118
             return $val;
119 119
         }
120 120
         return round($val);
Please login to merge, or discard this patch.