Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/.././././../vendor/phpoffice/../nesbot/../theseer/../webmozart/./.././bin/../theseer/../stripe/../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

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

<?php

namespace Maatwebsite\Excel\Jobs;

use Throwable;

trait ProxyFailures
{
    /**
     * @param  Throwable  $e
     */
    public function failed(Throwable $e)
    {
        if (method_exists($this->sheetExport, 'failed')) {
            $this->sheetExport->failed($e);
        }
    }
}