Passed
Push — master ( 8dfa4a...e4531b )
by Smoren
02:19
created
src/Structs/IntRange.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public function getValueByIndex(int $index): int
21 21
     {
22
-        return $this->start + $index * $this->step;
22
+        return $this->start+$index*$this->step;
23 23
     }
24 24
 
25 25
     /**
@@ -36,6 +36,6 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function getNextValue($previousValue): int
38 38
     {
39
-        return $previousValue + $this->step;
39
+        return $previousValue+$this->step;
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/Structs/IntExponential.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      */
16 16
     public function getValueByIndex(int $index): int
17 17
     {
18
-        return (int)($this->start * ($this->step ** $index));
18
+        return (int) ($this->start*($this->step ** $index));
19 19
     }
20 20
 
21 21
     /**
@@ -32,6 +32,6 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function getNextValue($previousValue): int
34 34
     {
35
-        return $previousValue * $this->step;
35
+        return $previousValue*$this->step;
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
src/Structs/FloatExponential.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public function getValueByIndex(int $index): float
21 21
     {
22
-        return $this->start * ($this->step ** $index);
22
+        return $this->start*($this->step ** $index);
23 23
     }
24 24
 
25 25
     /**
@@ -36,6 +36,6 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function getNextValue($previousValue): float
38 38
     {
39
-        return $previousValue * $this->step;
39
+        return $previousValue*$this->step;
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/Structs/FloatSequence.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      */
61 61
     public function getNextValue($previousValue): float
62 62
     {
63
-        return $previousValue + $this->step;
63
+        return $previousValue+$this->step;
64 64
     }
65 65
 
66 66
     /**
Please login to merge, or discard this patch.