Failed Conditions
Pull Request — master (#4257)
by Owen
11:59
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.