Passed
Pull Request — master (#3718)
by Adrien
13:53
created
Category
src/PhpSpreadsheet/Chart/Legend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     /**
108 108
      * Get legend position as an Excel internal numeric value.
109 109
      */
110
-    public function getPositionXL(): false|int
110
+    public function getPositionXL(): false | int
111 111
     {
112 112
         // Scrutinizer thinks the following could return string. It is wrong.
113 113
         return array_search($this->position, self::POSITION_XLREF);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Xls/Worksheet.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2180,7 +2180,7 @@  discard block
 block discarded – undo
2180 2180
      * @param float $scale_x The horizontal scale
2181 2181
      * @param float $scale_y The vertical scale
2182 2182
      */
2183
-    public function insertBitmap($row, $col, GdImage|string $bitmap, $x = 0, $y = 0, $scale_x = 1, $scale_y = 1): void
2183
+    public function insertBitmap($row, $col, GdImage | string $bitmap, $x = 0, $y = 0, $scale_x = 1, $scale_y = 1): void
2184 2184
     {
2185 2185
         $bitmap_array = $bitmap instanceof GdImage
2186 2186
             ? $this->processBitmapGd($bitmap)
@@ -2322,7 +2322,7 @@  discard block
 block discarded – undo
2322 2322
      * @param int $rwB Row containing bottom right corner of object
2323 2323
      * @param int $dyB Distance from bottom of cell
2324 2324
      */
2325
-    private function writeObjPicture(int $colL, int $dxL, int $rwT, int|float $dyT, int $colR, int $dxR, int $rwB, int $dyB): void
2325
+    private function writeObjPicture(int $colL, int $dxL, int $rwT, int | float $dyT, int $colR, int $dxR, int $rwB, int $dyB): void
2326 2326
     {
2327 2327
         $record = 0x005d; // Record identifier
2328 2328
         $length = 0x003c; // Bytes to follow
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/MemoryDrawing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * Image resource.
31 31
      */
32
-    private null|GdImage $imageResource = null;
32
+    private null | GdImage $imageResource = null;
33 33
 
34 34
     /**
35 35
      * Rendering function.
Please login to merge, or discard this patch.
tests/data/Calculation/LookupRef/LOOKUP.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 declare(strict_types=1);
4 4
 
5 5
 return [
6
-    [ // Office reference example #1
6
+    [// Office reference example #1
7 7
         'orange',
8 8
         4.19,
9 9
         [
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             ['blue'],
22 22
         ],
23 23
     ],
24
-    [ // Office reference example #2
24
+    [// Office reference example #2
25 25
         'yellow',
26 26
         5.75,
27 27
         [
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
             ['blue'],
40 40
         ],
41 41
     ],
42
-    [ // Office reference example #3
42
+    [// Office reference example #3
43 43
         'blue',
44 44
         7.66,
45 45
         [
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
             ['blue'],
58 58
         ],
59 59
     ],
60
-    [ // Office reference example #4
60
+    [// Office reference example #4
61 61
         '#N/A',
62 62
         0,
63 63
         [
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             ['blue'],
76 76
         ],
77 77
     ],
78
-    [ // Array form test
78
+    [// Array form test
79 79
         'orange',
80 80
         4.2,
81 81
         [
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Calculation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5253,7 +5253,7 @@  discard block
 block discarded – undo
5253 5253
      *
5254 5254
      * @return array
5255 5255
      */
5256
-    private function executeArrayComparison($operand1, $operand2, string $operation, Stack &$stack, bool $recursingArrays)
5256
+    private function executeArrayComparison($operand1, $operand2, string $operation, Stack & $stack, bool $recursingArrays)
5257 5257
     {
5258 5258
         $result = [];
5259 5259
         if (!is_array($operand2)) {
@@ -5298,7 +5298,7 @@  discard block
 block discarded – undo
5298 5298
      *
5299 5299
      * @return mixed
5300 5300
      */
5301
-    private function executeBinaryComparisonOperation($operand1, $operand2, string $operation, Stack &$stack, bool $recursingArrays = false)
5301
+    private function executeBinaryComparisonOperation($operand1, $operand2, string $operation, Stack & $stack, bool $recursingArrays = false)
5302 5302
     {
5303 5303
         //    If we're dealing with matrix operations, we want a matrix result
5304 5304
         if ((is_array($operand1)) || (is_array($operand2))) {
Please login to merge, or discard this patch.