%PDF- %PDF-
Direktori : /var/www/html/geotechnics/api/vendor/maatwebsite/excel/src/Concerns/ |
Current File : /var/www/html/geotechnics/api/vendor/maatwebsite/excel/src/Concerns/SkipsErrors.php |
<?php namespace Maatwebsite\Excel\Concerns; use Throwable; use Illuminate\Support\Collection; use Maatwebsite\Excel\Validators\Failure; trait SkipsErrors { /** * @var Failure[] */ protected $errors = []; /** * @param Throwable $e */ public function onError(Throwable $e) { $this->errors[] = $e; } /** * @return Throwable[]|Collection */ public function errors(): Collection { return new Collection($this->errors); } }