PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
maatwebsite
/
excel
/
src
/
Jobs
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; class QueueImport implements ShouldQueue { use ExtendedQueueable, Dispatchable; /** * @var int */ public $tries; /** * @var int */ public $timeout; /** * @param ShouldQueue $import */ public function __construct(ShouldQueue $import = null) { if ($import) { $this->timeout = $import->timeout ?? null; $this->tries = $import->tries ?? null; } } public function handle() { // } }
[-] StoreQueuedExport.php
[edit]
[+]
..
[-] QueueExport.php
[edit]
[-] AppendViewToSheet.php
[edit]
[-] ProxyFailures.php
[edit]
[+]
Middleware
[-] AppendQueryToSheet.php
[edit]
[-] QueueImport.php
[edit]
[-] CloseSheet.php
[edit]
[-] ExtendedQueueable.php
[edit]
[-] ReadChunk.php
[edit]
[-] AfterImportJob.php
[edit]
[-] AppendDataToSheet.php
[edit]