%PDF- %PDF-
Direktori : /var/www/html/kpk/api/vendor/maatwebsite/excel/src/Jobs/ |
Current File : /var/www/html/kpk/api/vendor/maatwebsite/excel/src/Jobs/AppendQueryToSheet.php |
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; use Maatwebsite\Excel\Writer; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; class AppendQueryToSheet implements ShouldQueue { use Queueable, Dispatchable; /** * @var SerializedQuery */ public $query; /** * @var string */ public $filePath; /** * @var string */ public $writerType; /** * @var int */ public $sheetIndex; /** * @var object */ public $sheetExport; /** * @param object $sheetExport * @param string $filePath * @param string $writerType * @param int $sheetIndex * @param SerializedQuery $query */ public function __construct( $sheetExport, string $filePath, string $writerType, int $sheetIndex, SerializedQuery $query ) { $this->sheetExport = $sheetExport; $this->query = $query; $this->filePath = $filePath; $this->writerType = $writerType; $this->sheetIndex = $sheetIndex; } /** * @param Writer $writer * * @throws \PhpOffice\PhpSpreadsheet\Exception * @throws \PhpOffice\PhpSpreadsheet\Reader\Exception * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception */ public function handle(Writer $writer) { $writer = $writer->reopen($this->filePath, $this->writerType); $sheet = $writer->getSheetByIndex($this->sheetIndex); $sheet->appendRows($this->query->execute(), $this->sheetExport); $writer->write($this->sheetExport, $this->filePath, $this->writerType); } }