Skip to content

Commit 73b26c4

Browse files
stloydnorberttech
authored andcommitted
Allow usage of newer "openspout/openspout"
1 parent 062701c commit 73b26c4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/adapter/etl-adapter-excel/src/Flow/ETL/Adapter/Excel/ExcelExtractor.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ private function createRowsFromCells(Row $row, int $previousRowDataCount = 0) :
137137
$rowData = \array_map(
138138
// Convert empty values to nullables if allowed
139139
fn (Cell $cell) => $this->convertEmptyToNull && '' === $cell->getValue() ? null : $cell->getValue(),
140+
/** @phpstan-ignore-next-line method remove in 5.0 in favor of public property */
140141
method_exists($row, 'getCells') ? $row->getCells() : $row->cells
141142
);
142143

0 commit comments

Comments
 (0)