░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/moodle/public/lib/openspout/src/Writer/Common/Creator
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: WriterFactory.php
<?php declare(strict_types=1); namespace OpenSpout\Writer\Common\Creator; use OpenSpout\Common\Exception\UnsupportedTypeException; use OpenSpout\Writer\CSV\Writer as CSVWriter; use OpenSpout\Writer\ODS\Writer as ODSWriter; use OpenSpout\Writer\WriterInterface; use OpenSpout\Writer\XLSX\Writer as XLSXWriter; /** * This factory is used to create writers, based on the type of the file to be read. * It supports CSV, XLSX and ODS formats. * * @deprecated Guessing mechanisms are brittle by nature and won't be provided by this library anymore */ final class WriterFactory { /** * This creates an instance of the appropriate writer, given the extension of the file to be written. * * @param string $path The path to the spreadsheet file. Supported extensions are .csv,.ods and .xlsx * * @throws UnsupportedTypeException */ public static function createFromFile(string $path): WriterInterface { $extension = strtolower(pathinfo($path, PATHINFO_EXTENSION)); return match ($extension) { 'csv' => new CSVWriter(), 'xlsx' => new XLSXWriter(), 'ods' => new ODSWriter(), default => throw new UnsupportedTypeException('No writers supporting the given type: '.$extension), }; } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 WriterFactory.php
PHP
1.3 KB
2026-02-11 01:44
EDIT