| @@ -140,7 +140,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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), | 
| @@ -22,8 +22,8 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | 
| @@ -55,7 +55,7 @@ discard block | ||
| 55 | 55 | |
| 56 | 56 | $rounded = $whole.'.'; | 
| 57 | 57 | |
| 58 | -                for ($i = 0;$i < $decimals;$i++) { | |
| 58 | +                for ($i = 0; $i < $decimals; $i++) { | |
| 59 | 59 | $rounded .= $fractionalArr[$i]; | 
| 60 | 60 | } | 
| 61 | 61 | |
| @@ -143,7 +143,7 @@ discard block | ||
| 143 | 143 | $total = strlen($fractional); | 
| 144 | 144 | $fractional = ltrim($fractional, '0'); | 
| 145 | 145 | |
| 146 | - return ($total - strlen($fractional)); | |
| 146 | + return ($total-strlen($fractional)); | |
| 147 | 147 | } | 
| 148 | 148 | |
| 149 | 149 | /** | 
| @@ -229,7 +229,7 @@ discard block | ||
| 229 | 229 | public function isFloat(): bool | 
| 230 | 230 |      { | 
| 231 | 231 | |
| 232 | - return (bool)ArithmeticProvider::compare($this->getDecimalPart(), '0'); | |
| 232 | + return (bool) ArithmeticProvider::compare($this->getDecimalPart(), '0'); | |
| 233 | 233 | |
| 234 | 234 | } | 
| 235 | 235 | |
| @@ -244,7 +244,7 @@ discard block | ||
| 244 | 244 | ); | 
| 245 | 245 | } | 
| 246 | 246 | |
| 247 | - return (float)$this->asReal(); | |
| 247 | + return (float) $this->asReal(); | |
| 248 | 248 | |
| 249 | 249 | } | 
| 250 | 250 | |