/home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Jobs
Edit: /home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Jobs/StoreQueuedExport.php (1301B)
disk = $disk;
$this->filePath = $filePath;
$this->temporaryFile = $temporaryFile;
$this->diskOptions = $diskOptions;
}
/**
* @param Filesystem $filesystem
*/
public function handle(Filesystem $filesystem)
{
$filesystem->disk($this->disk, $this->diskOptions)->copy(
$this->temporaryFile,
$this->filePath
);
$this->temporaryFile->delete();
}
}