| 1 | <?php |
||
| 16 | class ReaderFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * This creates an instance of the appropriate reader, given the type of the file to be read |
||
| 20 | * |
||
| 21 | * @api |
||
| 22 | * @param string $readerType Type of the reader to instantiate |
||
| 23 | * @return ReaderInterface |
||
| 24 | * @throws \Box\Spout\Common\Exception\UnsupportedTypeException |
||
| 25 | */ |
||
| 26 | public static function create($readerType) |
||
| 48 | } |
||
| 49 |