PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
maatwebsite
/
excel
/
src
/
Events
<?php namespace Maatwebsite\Excel\Events; use Throwable; class ImportFailed { /** * @var Throwable */ public $e; /** * @param Throwable $e */ public function __construct(Throwable $e) { $this->e = $e; } /** * @return Throwable */ public function getException(): Throwable { return $this->e; } }
[-] BeforeWriting.php
[edit]
[+]
..
[-] ImportFailed.php
[edit]
[-] AfterSheet.php
[edit]
[-] BeforeExport.php
[edit]
[-] AfterImport.php
[edit]
[-] Event.php
[edit]
[-] BeforeImport.php
[edit]
[-] BeforeSheet.php
[edit]