diff --git a/src/adapter/etl-adapter-excel/src/Flow/ETL/Adapter/Excel/ExcelExtractor.php b/src/adapter/etl-adapter-excel/src/Flow/ETL/Adapter/Excel/ExcelExtractor.php index 3e6f2ff01..1c4ef6b44 100644 --- a/src/adapter/etl-adapter-excel/src/Flow/ETL/Adapter/Excel/ExcelExtractor.php +++ b/src/adapter/etl-adapter-excel/src/Flow/ETL/Adapter/Excel/ExcelExtractor.php @@ -133,8 +133,7 @@ private function createRowsFromCells(Row $row, int $previousRowDataCount = 0) : $rowData = \array_map( // Convert empty values to nullables if allowed fn (Cell $cell) => $this->convertEmptyToNull && '' === $cell->getValue() ? null : $cell->getValue(), - /** @phpstan-ignore-next-line method remove in 5.0 in favor of public property */ - method_exists($row, 'getCells') ? $row->getCells() : $row->cells + $row->cells ); // Expand columns to the size of the previous row