Passed
Push — master ( d88efc...653645 )
by
unknown
12:43 queued 21s
created
PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 {
7 7
     private string $type;
8 8
 
9
-    private null|float|int|string $value;
9
+    private null | float | int | string $value;
10 10
 
11 11
     private ?string $cellFormula;
12 12
 
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     private ?bool $greaterThanOrEqual = null;
19 19
 
20
-    public function __construct(string $type, null|float|int|string $value = null, ?string $cellFormula = null)
20
+    public function __construct(string $type, null | float | int | string $value = null, ?string $cellFormula = null)
21 21
     {
22 22
         $this->type = $type;
23 23
         $this->value = $value;
@@ -36,12 +36,12 @@  discard block
 block discarded – undo
36 36
         return $this;
37 37
     }
38 38
 
39
-    public function getValue(): null|float|int|string
39
+    public function getValue(): null | float | int | string
40 40
     {
41 41
         return $this->value;
42 42
     }
43 43
 
44
-    public function setValue(null|float|int|string $value): self
44
+    public function setValue(null | float | int | string $value): self
45 45
     {
46 46
         $this->value = $value;
47 47
 
Please login to merge, or discard this patch.