/home/techb158/dev.balacoffee.com/vendor/maatwebsite/excel/src/Events
Edit: /home/techb158/dev.balacoffee.com/vendor/maatwebsite/excel/src/Events/AfterBatch.php (1093B)
manager = $manager;
$this->batchSize = $batchSize;
$this->startRow = $startRow;
parent::__construct($importable);
}
public function getManager(): ModelManager
{
return $this->manager;
}
/**
* @return mixed
*/
public function getDelegate()
{
return $this->manager;
}
public function getBatchSize(): int
{
return $this->batchSize;
}
public function getStartRow(): int
{
return $this->startRow;
}
}