Passed
Push — master ( ae6524...8dfa4a )
by Smoren
02:10
created
src/Structs/IntRange.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 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
     /**
Please login to merge, or discard this patch.
src/Structs/FloatExponential.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 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
     /**
Please login to merge, or discard this patch.
src/Structs/FloatRange.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function getValueByIndex(int $index): float
21 21
     {
22
-        return $this->start + $index * $this->step;
22
+        return $this->start+$index*$this->step;
23 23
     }
24 24
 
25 25
     /**
Please login to merge, or discard this patch.
src/Structs/IntExponential.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 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
     /**
Please login to merge, or discard this patch.