%PDF- %PDF-
Direktori : /var/www/html/o91-api/vendor/maatwebsite/excel/src/Factories/ |
Current File : /var/www/html/o91-api/vendor/maatwebsite/excel/src/Factories/ReaderFactory.php |
<?php namespace Maatwebsite\Excel\Factories; use PhpOffice\PhpSpreadsheet\IOFactory; use PhpOffice\PhpSpreadsheet\Reader\IReader; class ReaderFactory { /** * @param string $filePath * @param string $readerType * * @throws \PhpOffice\PhpSpreadsheet\Reader\Exception * @return IReader */ public static function make(string $filePath, string $readerType): IReader { return IOFactory::createReader($readerType); } }