Passed
Pull Request — master (#4271)
by Owen
16:26
created
src/PhpSpreadsheet/Reader/Html.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     /**
253 253
      * Flush cell.
254 254
      */
255
-    protected function flushCell(Worksheet $sheet, string $column, int|string $row, mixed &$cellContent, array $attributeArray): void
255
+    protected function flushCell(Worksheet $sheet, string $column, int | string $row, mixed &$cellContent, array $attributeArray): void
256 256
     {
257 257
         if (is_string($cellContent)) {
258 258
             //    Simple String content
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
     /** @var array<int, array<int, string>> */
302 302
     private static array $falseTrueArray = [];
303 303
 
304
-    private static function convertBoolean(?string $cellContent): bool|string
304
+    private static function convertBoolean(?string $cellContent): bool | string
305 305
     {
306 306
         if ($cellContent === '1') {
307 307
             return true;
@@ -887,7 +887,7 @@  discard block
 block discarded – undo
887 887
      * TODO :
888 888
      * - Implement to other propertie, such as border
889 889
      */
890
-    private function applyInlineStyle(Worksheet &$sheet, int $row, string $column, array $attributeArray): void
890
+    private function applyInlineStyle(Worksheet & $sheet, int $row, string $column, array $attributeArray): void
891 891
     {
892 892
         if (!isset($attributeArray['style'])) {
893 893
             return;
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Logical/XorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     }
19 19
 
20 20
     #[\PHPUnit\Framework\Attributes\DataProvider('providerXORLiteral')]
21
-    public function testXORLiteral(mixed $expectedResult, float|string $formula): void
21
+    public function testXORLiteral(mixed $expectedResult, float | string $formula): void
22 22
     {
23 23
         $sheet = $this->getSheet();
24 24
         $sheet->getCell('A1')->setValue("=XOR($formula)");
Please login to merge, or discard this patch.