/home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Imports
NameSizeModeActions
EndRowFinder.php8490644editdlrm
HeadingRowExtractor.php18840644editdlrm
HeadingRowFormatter.php23060644editdlrm
ModelImporter.php32750644editdlrm
ModelManager.php61050644editdlrm
Edit: /home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Imports/HeadingRowExtractor.php (1884B)
headingRow() : self::DEFAULT_HEADING_ROW; } /** * @param WithHeadingRow|mixed $importable * * @return int */ public static function determineStartRow($importable): int { if ($importable instanceof WithStartRow) { return $importable->startRow(); } // The start row is the row after the heading row if we have one! return $importable instanceof WithHeadingRow ? self::headingRow($importable) + 1 : self::DEFAULT_HEADING_ROW; } /** * @param Worksheet $worksheet * @param WithHeadingRow|mixed $importable * * @return array */ public static function extract(Worksheet $worksheet, $importable): array { if (!$importable instanceof WithHeadingRow) { return []; } $headingRowNumber = self::headingRow($importable); $rows = iterator_to_array($worksheet->getRowIterator($headingRowNumber, $headingRowNumber)); $headingRow = head($rows); $endColumn = $importable instanceof WithColumnLimit ? $importable->endColumn() : null; return HeadingRowFormatter::format((new Row($headingRow))->toArray(null, false, false, $endColumn)); } }