PATH:
home
/
lab2454c
/
aficb.com
/
vendor
/
maatwebsite
/
excel
/
src
/
Jobs
<?php namespace Maatwebsite\Excel\Jobs; use Illuminate\Bus\Queueable; trait ExtendedQueueable { use Queueable { chain as originalChain; } /** * @param $chain * @return $this */ public function chain($chain) { collect($chain)->each(function ($job) { $serialized = method_exists($this, 'serializeJob') ? $this->serializeJob($job) : serialize($job); $this->chained[] = $serialized; }); return $this; } }
[-] 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]