PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
maatwebsite
/
excel
/
src
/
Events
<?php namespace Maatwebsite\Excel\Events; abstract class Event { /** * @return object */ abstract public function getConcernable(); /** * @return mixed */ abstract public function getDelegate(); /** * @param string $concern * * @return bool */ public function appliesToConcern(string $concern): bool { return $this->getConcernable() instanceof $concern; } }
[-] BeforeWriting.php
[edit]
[+]
..
[-] ImportFailed.php
[edit]
[-] AfterSheet.php
[edit]
[-] BeforeExport.php
[edit]
[-] AfterImport.php
[edit]
[-] Event.php
[edit]
[-] BeforeImport.php
[edit]
[-] BeforeSheet.php
[edit]