Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../.././vendor/laravel/../maatwebsite/excel/src/././Jobs/.
الملفات الموجودة في هذا الـ Path:
.
..
AfterImportJob.php
AppendDataToSheet.php
AppendQueryToSheet.php
AppendViewToSheet.php
CloseSheet.php
ExtendedQueueable.php
Middleware
ProxyFailures.php
QueueExport.php
QueueImport.php
ReadChunk.php
StoreQueuedExport.php

مشاهدة ملف: ExtendedQueueable.php

<?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;
    }
}