Passed
Push — master ( a94b8a...621c3c )
by Jordan
21:05 queued 14:22
created
tests-bench/src/Samsara/Fermat/BareNativeBench.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     #[Revs(100000)]
13 13
     public function benchBareNativeBinaryOp()
14 14
     {
15
-        3 + 2;
15
+        3+2;
16 16
     }
17 17
 
18 18
     #[Groups(['arithmetic', 'bare-native'])]
Please login to merge, or discard this patch.
src/Samsara/Fermat/Types/Traits/Arithmetic/ArithmeticScaleTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         if (!$num->isWhole() && !extension_loaded('decimal')) {
87 87
             $scale += 1;
88 88
             $exponent = $num->multiply($thisNum->ln($scale));
89
-            return $exponent->exp($scale)->truncateToScale($scale - 1)->getValue(NumberBase::Ten);
89
+            return $exponent->exp($scale)->truncateToScale($scale-1)->getValue(NumberBase::Ten);
90 90
         }
91 91
 
92 92
         return ArithmeticProvider::pow($this->asReal(), $num->asReal(), $scale);
Please login to merge, or discard this patch.
src/Samsara/Fermat/Types/Traits/Arithmetic/ArithmeticGMPTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      * @param DecimalInterface $num
17 17
      * @return string|false
18 18
      */
19
-    protected function addGMP(DecimalInterface $num): string|false
19
+    protected function addGMP(DecimalInterface $num): string | false
20 20
     {
21 21
         if (function_exists('gmp_add') && function_exists('gmp_strval') && $this->extensions) {
22 22
             if ($this->isInt() && $num->isInt()) {
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      * @param DecimalInterface $num
34 34
      * @return string|false
35 35
      */
36
-    protected function subtractGMP(DecimalInterface $num): string|false
36
+    protected function subtractGMP(DecimalInterface $num): string | false
37 37
     {
38 38
         if (function_exists('gmp_sub') && function_exists('gmp_strval') && $this->extensions) {
39 39
             if ($this->isInt() && $num->isInt()) {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * @param DecimalInterface $num
51 51
      * @return string|false
52 52
      */
53
-    protected function multiplyGMP(DecimalInterface $num): string|false
53
+    protected function multiplyGMP(DecimalInterface $num): string | false
54 54
     {
55 55
         if (function_exists('gmp_mul') && function_exists('gmp_strval') && $this->extensions) {
56 56
             if ($this->isInt() && $num->isInt()) {
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      * @param DecimalInterface $num
68 68
      * @return string|false
69 69
      */
70
-    protected function divideGMP(DecimalInterface $num): string|false
70
+    protected function divideGMP(DecimalInterface $num): string | false
71 71
     {
72 72
         if (function_exists('gmp_div_qr') && function_exists('gmp_strval') && $this->extensions) {
73 73
             if ($this->isInt() && $num->isInt()) {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      * @param DecimalInterface $num
92 92
      * @return string|false
93 93
      */
94
-    protected function powGMP(DecimalInterface $num): string|false
94
+    protected function powGMP(DecimalInterface $num): string | false
95 95
     {
96 96
         if (function_exists('gmp_pow') && function_exists('gmp_strval') && $this->extensions) {
97 97
             if ($this->isInt() && $num->isInt() && $num->isPositive()) {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     /**
108 108
      * @return string|false
109 109
      */
110
-    protected function sqrtGMP(): string|false
110
+    protected function sqrtGMP(): string | false
111 111
     {
112 112
         if (function_exists('gmp_sqrtrem') && function_exists('gmp_strval') && $this->extensions) {
113 113
             if ($this->isInt() && $this->isLessThan(PHP_INT_MAX) && $this->isGreaterThan(PHP_INT_MIN)) {
Please login to merge, or discard this patch.
src/Samsara/Fermat/Types/Traits/IntegerMathTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $curVal = $this->getValue(NumberBase::Ten);
54 54
         $calcVal = Numbers::make(Numbers::IMMUTABLE, 1);
55 55
 
56
-        for ($i = 1;$i <= $curVal;$i++) {
56
+        for ($i = 1; $i <= $curVal; $i++) {
57 57
             $calcVal = $calcVal->multiply($i);
58 58
         }
59 59
 
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
         }
248 248
 
249 249
         if (function_exists('gmp_prob_prime') && $this->extensions) {
250
-            return (bool)gmp_prob_prime($this->getValue(NumberBase::Ten), $certainty);
250
+            return (bool) gmp_prob_prime($this->getValue(NumberBase::Ten), $certainty);
251 251
         }
252 252
 
253 253
         $thisNum = Numbers::makeOrDont(Numbers::IMMUTABLE, $this, $this->getScale());
@@ -263,13 +263,13 @@  discard block
 block discarded – undo
263 263
 
264 264
         $r = $r->subtract(1);
265 265
 
266
-        for ($i = 0;$i < $certainty;$i++) {
266
+        for ($i = 0; $i < $certainty; $i++) {
267 267
             $a = RandomProvider::randomInt(2, $s, RandomMode::Speed);
268 268
             $x = $a->pow($d)->modulo($thisNum);
269 269
             if ($x->isEqual(1) || $x->isEqual($s)) {
270 270
                 continue;
271 271
             }
272
-            for ($j = 0;$j < $r->asInt();$j++) {
272
+            for ($j = 0; $j < $r->asInt(); $j++) {
273 273
                 $x = $x->pow(2)->modulo($thisNum);
274 274
                 if ($x->isEqual($s)) {
275 275
                     continue 2;
Please login to merge, or discard this patch.
src/Samsara/Fermat/Types/Traits/Decimal/LogScaleTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
         } else {
43 43
             $x = $this instanceof ImmutableDecimal ? $this : new ImmutableDecimal($this->getValue(NumberBase::Ten));
44 44
             $x2 = $x->pow(2);
45
-            $intScale = $scale + 1;
45
+            $intScale = $scale+1;
46 46
             $terms = $scale;
47 47
             $six = new ImmutableDecimal(6);
48 48
 
49
-            $aPart = new class($x2, $x) implements ContinuedFractionTermInterface{
49
+            $aPart = new class($x2, $x) implements ContinuedFractionTermInterface {
50 50
                 private ImmutableDecimal $x2;
51 51
                 private ImmutableDecimal $x;
52 52
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                 }
75 75
             };
76 76
 
77
-            $bPart = new class($x, $six) implements ContinuedFractionTermInterface{
77
+            $bPart = new class($x, $six) implements ContinuedFractionTermInterface {
78 78
                 private ImmutableDecimal $x;
79 79
                 private ImmutableDecimal $six;
80 80
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
         $answer = $adjustedNum;
183 183
 
184 184
         if ($exp2) {
185
-            $answer = $answer->add(Numbers::makeNaturalLog2($internalScale + $exp2)->multiply($exp2));
185
+            $answer = $answer->add(Numbers::makeNaturalLog2($internalScale+$exp2)->multiply($exp2));
186 186
         }
187 187
 
188 188
         if ($exp1p1) {
Please login to merge, or discard this patch.