![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/inventory.corals.io/vendor/maatwebsite/excel/src/Imports/ |
<?php namespace Maatwebsite\Excel\Imports; use Maatwebsite\Excel\Concerns\WithLimit; class EndRowFinder { /** * @param object|WithLimit $import * @param int $startRow * @param int|null $highestRow * @return int|null */ public static function find($import, int $startRow = null, int $highestRow = null) { if (!$import instanceof WithLimit) { return null; } $limit = $import->limit(); if ($limit > $highestRow) { return null; } // When no start row given, // use the first row as start row. $startRow = $startRow ?? 1; // Subtract 1 row from the start row, so a limit // of 1 row, will have the same start and end row. return ($startRow - 1) + $limit; } }