Test Failed
Pull Request — dev (#87)
by Jordan
13:18
created
src/Samsara/Fermat/Types/Traits/Arithmetic/ArithmeticSelectionTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 
141 141
     protected function addSelector(DecimalInterface $num)
142 142
     {
143
-        return match ($this->calcMode) {
143
+        return match($this->calcMode) {
144 144
             Selectable::CALC_MODE_PRECISION => $this->addScale($num),
145 145
             Selectable::CALC_MODE_NATIVE => $this->addNative($num),
146 146
             default => $this->{$this->modeRegister[Selectable::CALC_MODE_FALLBACK]['add']}($num),
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     protected function subtractSelector(DecimalInterface $num)
151 151
     {
152
-        return match ($this->calcMode) {
152
+        return match($this->calcMode) {
153 153
             Selectable::CALC_MODE_PRECISION => $this->subtractScale($num),
154 154
             Selectable::CALC_MODE_NATIVE => $this->subtractNative($num),
155 155
             default => $this->{$this->modeRegister[Selectable::CALC_MODE_FALLBACK]['subtract']}($num),
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 
159 159
     protected function multiplySelector(DecimalInterface $num)
160 160
     {
161
-        return match ($this->calcMode) {
161
+        return match($this->calcMode) {
162 162
             Selectable::CALC_MODE_PRECISION => $this->multiplyScale($num),
163 163
             Selectable::CALC_MODE_NATIVE => $this->multiplyNative($num),
164 164
             default => $this->{$this->modeRegister[Selectable::CALC_MODE_FALLBACK]['multiply']}($num),
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 
168 168
     protected function divideSelector(DecimalInterface $num, int $scale)
169 169
     {
170
-        return match ($this->calcMode) {
170
+        return match($this->calcMode) {
171 171
             Selectable::CALC_MODE_PRECISION => $this->divideScale($num, $scale),
172 172
             Selectable::CALC_MODE_NATIVE => $this->divideNative($num),
173 173
             default => $this->{$this->modeRegister[Selectable::CALC_MODE_FALLBACK]['divide']}($num, $scale),
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 
177 177
     protected function powSelector(DecimalInterface $num)
178 178
     {
179
-        return match ($this->calcMode) {
179
+        return match($this->calcMode) {
180 180
             Selectable::CALC_MODE_PRECISION => $this->powScale($num),
181 181
             Selectable::CALC_MODE_NATIVE => $this->powNative($num),
182 182
             default => $this->{$this->modeRegister[Selectable::CALC_MODE_FALLBACK]['pow']}($num),
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 
186 186
     protected function sqrtSelector(int $scale)
187 187
     {
188
-        return match ($this->calcMode) {
188
+        return match($this->calcMode) {
189 189
             Selectable::CALC_MODE_PRECISION => $this->sqrtScale($scale),
190 190
             Selectable::CALC_MODE_NATIVE => $this->sqrtNative(),
191 191
             default => $this->{$this->modeRegister[Selectable::CALC_MODE_FALLBACK]['sqrt']}($scale),
Please login to merge, or discard this patch.
src/Samsara/Fermat/Types/Traits/Arithmetic/ArithmeticNativeTrait.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
         $left = self::translateToNative($this);
23 23
         $right = self::translateToNative($num);
24 24
 
25
-        $value = $left + $right;
26
-        return (string)$value;
25
+        $value = $left+$right;
26
+        return (string) $value;
27 27
     }
28 28
 
29 29
     protected function subtractNative(DecimalInterface $num)
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
         $left = self::translateToNative($this);
32 32
         $right = self::translateToNative($num);
33 33
 
34
-        $value = $left - $right;
35
-        return (string)$value;
34
+        $value = $left-$right;
35
+        return (string) $value;
36 36
     }
37 37
 
38 38
     protected function multiplyNative(DecimalInterface $num)
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
         $left = self::translateToNative($this);
41 41
         $right = self::translateToNative($num);
42 42
 
43
-        $value = $left * $right;
44
-        return (string)$value;
43
+        $value = $left*$right;
44
+        return (string) $value;
45 45
     }
46 46
 
47 47
     protected function divideNative(DecimalInterface $num)
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
         $left = self::translateToNative($this);
50 50
         $right = self::translateToNative($num);
51 51
 
52
-        $value = $left / $right;
53
-        return (string)$value;
52
+        $value = $left/$right;
53
+        return (string) $value;
54 54
     }
55 55
 
56 56
     protected function powNative(DecimalInterface $num)
@@ -59,13 +59,13 @@  discard block
 block discarded – undo
59 59
         $right = self::translateToNative($num);
60 60
 
61 61
         $value = pow($left, $right);
62
-        return (string)$value;
62
+        return (string) $value;
63 63
     }
64 64
 
65 65
     protected function sqrtNative()
66 66
     {
67 67
         $value = sqrt($this->asFloat());
68
-        return (string)$value;
68
+        return (string) $value;
69 69
     }
70 70
 
71 71
 }
72 72
\ No newline at end of file
Please login to merge, or discard this patch.