%PDF- %PDF-
Direktori : /var/www/html/kpk/api/vendor/maatwebsite/excel/src/Factories/ |
Current File : /var/www/html/kpk/api/vendor/maatwebsite/excel/src/Factories/ReaderFactory.php |
<?php namespace Maatwebsite\Excel\Factories; use PhpOffice\PhpSpreadsheet\IOFactory; use PhpOffice\PhpSpreadsheet\Reader\IReader; use Maatwebsite\Excel\Exceptions\UnreadableFileException; class ReaderFactory { /** * @param string $filePath * @param string $readerType * * @return IReader */ public static function make(string $filePath, string $readerType): IReader { $reader = IOFactory::createReader($readerType); if (!$reader->canRead($filePath)) { throw new UnreadableFileException; } return $reader; } }