Passed
Push — master ( bd792e...df3a06 )
by
unknown
15:51 queued 08:04
created
tests/data/Calculation/Calculation.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -35,13 +35,13 @@
 block discarded – undo
35 35
     $set6 = [0, $dataArray3, '=IF(A1+B1>3,C1,0)', 'E5'];
36 36
 
37 37
     $dataArray4 = [
38
-        ['noflag',    0, 0],
39
-        [127000,    0, 0],
40
-        [10000,  0.03, 0],
41
-        [20000,  0.06, 0],
42
-        [40000,  0.09, 0],
43
-        [70000,  0.12, 0],
44
-        [90000,  0.03, 0],
38
+        ['noflag', 0, 0],
39
+        [127000, 0, 0],
40
+        [10000, 0.03, 0],
41
+        [20000, 0.06, 0],
42
+        [40000, 0.09, 0],
43
+        [70000, 0.12, 0],
44
+        [90000, 0.03, 0],
45 45
     ];
46 46
     $formula2 = '=IF(A1="flag",IF(A2<10, 0) + IF(A3<10000, 0))';
47 47
     $set7 = [false, $dataArray4, $formula2, 'E5'];
Please login to merge, or discard this patch.
tests/data/Calculation/MathTrig/MMULT.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
     ],
18 18
     [
19 19
         [
20
-            [30,  36,  42],
21
-            [66,  81,  96],
20
+            [30, 36, 42],
21
+            [66, 81, 96],
22 22
             [102, 126, 150],
23 23
         ],
24 24
         [
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     ],
63 63
     [
64 64
         [
65
-            [62.00,  49.46],
65
+            [62.00, 49.46],
66 66
             [176.40, 144.50],
67 67
         ],
68 68
         [
Please login to merge, or discard this patch.
tests/data/Calculation/LookupRef/MATCH.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
         [8, 8, 3, 2],
95 95
         -1,
96 96
     ],
97
-    [ // Default matchtype
97
+    [// Default matchtype
98 98
         4, // Expected
99 99
         4, // Input
100 100
         [2, 0, 0, 3],
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Xls/Style/CellFill.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         Fill::FILL_PATTERN_GRAY125 => 0x11,
31 31
         Fill::FILL_PATTERN_GRAY0625 => 0x12,
32 32
         Fill::FILL_GRADIENT_LINEAR => 0x00, // does not exist in BIFF8
33
-        Fill::FILL_GRADIENT_PATH => 0x00,   // does not exist in BIFF8
33
+        Fill::FILL_GRADIENT_PATH => 0x00, // does not exist in BIFF8
34 34
     ];
35 35
 
36 36
     public static function style(Fill $fill): int
Please login to merge, or discard this patch.
tests/data/Cell/SetValueExplicit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     ],
52 52
     [
53 53
         -30879.0,
54
-        '1815-06-15',               // Dates outside the Excel Range should fail really
54
+        '1815-06-15', // Dates outside the Excel Range should fail really
55 55
         DataType::TYPE_ISO_DATE,
56 56
     ],
57 57
     [
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/BaseDrawing.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,8 +172,7 @@
 block discarded – undo
172 172
         // Initialise values
173 173
         $this->setShadow();
174 174
 
175
-        // Set image index
176
-        ++self::$imageCounter;
175
+        // Set image index++self::$imageCounter;
177 176
         $this->imageIndex = self::$imageCounter;
178 177
     }
179 178
 
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Chart/GridlinesLineStyleTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
             true, // plotVisibleOnly
152 152
             DataSeries::EMPTY_AS_GAP, // displayBlanksAs
153 153
             null, // xAxisLabel
154
-            $yAxisLabel,  // yAxisLabel
154
+            $yAxisLabel, // yAxisLabel
155 155
             null, // xAxis
156 156
             $yAxis // yAxis
157 157
         );
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
             true, // plotVisibleOnly
345 345
             DataSeries::EMPTY_AS_GAP, // displayBlanksAs
346 346
             null, // xAxisLabel
347
-            $yAxisLabel,  // yAxisLabel
347
+            $yAxisLabel, // yAxisLabel
348 348
             null, // xAxis
349 349
             null, // yAxis
350 350
             $majorGridlines,
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Chart/AxisPropertiesTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
             true, // plotVisibleOnly
138 138
             DataSeries::EMPTY_AS_GAP, // displayBlanksAs
139 139
             null, // xAxisLabel
140
-            $yAxisLabel,  // yAxisLabel
140
+            $yAxisLabel, // yAxisLabel
141 141
             $xAxis, // xAxis
142 142
             $yAxis, // yAxis
143 143
             null, //majorGridlines,
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Chart/GridlinesShadowGlowTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
             true, // plotVisibleOnly
149 149
             DataSeries::EMPTY_AS_GAP, // displayBlanksAs
150 150
             null, // xAxisLabel
151
-            $yAxisLabel,  // yAxisLabel
151
+            $yAxisLabel, // yAxisLabel
152 152
             null, // xAxis
153 153
             $yAxis // yAxis
154 154
         );
Please login to merge, or discard this patch.