/home/techb158/dev.balacoffee.com/vendor/maatwebsite/excel/src/Events
Edit: /home/techb158/dev.balacoffee.com/vendor/maatwebsite/excel/src/Events/Event.php (713B)
concernable = $concernable;
}
/**
* @return object
*/
public function getConcernable()
{
return $this->concernable;
}
/**
* @return mixed
*/
abstract public function getDelegate();
/**
* @param string $concern
* @return bool
*/
public function appliesToConcern(string $concern): bool
{
return $this->getConcernable() instanceof $concern;
}
}