/home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Jobs
NameSizeModeActions
Middleware/-0755rm
AfterImportJob.php14030644editdlrm
AppendDataToSheet.php21350644editdlrm
AppendQueryToSheet.php24980644editdlrm
AppendViewToSheet.php20760644editdlrm
CloseSheet.php17520644editdlrm
ExtendedQueueable.php5080644editdlrm
ProxyFailures.php2910644editdlrm
QueueExport.php22580644editdlrm
QueueImport.php6400644editdlrm
ReadChunk.php52500644editdlrm
StoreQueuedExport.php13010644editdlrm
Edit: /home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Jobs/AppendViewToSheet.php (2076B)
sheetExport = $sheetExport; $this->temporaryFile = $temporaryFile; $this->writerType = $writerType; $this->sheetIndex = $sheetIndex; } /** * Get the middleware the job should be dispatched through. * * @return array */ public function middleware() { return (method_exists($this->sheetExport, 'middleware')) ? $this->sheetExport->middleware() : []; } /** * @param Writer $writer * * @throws \PhpOffice\PhpSpreadsheet\Exception * @throws \PhpOffice\PhpSpreadsheet\Reader\Exception */ public function handle(Writer $writer) { (new LocalizeJob($this->sheetExport))->handle($this, function () use ($writer) { $writer = $writer->reopen($this->temporaryFile, $this->writerType); $sheet = $writer->getSheetByIndex($this->sheetIndex); $sheet->fromView($this->sheetExport, $this->sheetIndex); $writer->write($this->sheetExport, $this->temporaryFile, $this->writerType); }); } }