We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3912901 commit 952b15eCopy full SHA for 952b15e
1 file changed
UPGRADE.md
@@ -29,3 +29,16 @@ To
29
```php
30
$writer = SimpleExcelWriter::create(file: $file, delimiter: ';');
31
```
32
+
33
+### Deprecated setting the type manually
34
35
+In v4 of openspout/openspout it is no longer possible to explicitly set the type.
36
+We still have support for this, but we'll deprecate the method.
37
38
+```php
39
+$reader = SimpleExcelReader::create('php://input', 'csv');
40
+```
41
42
43
+ $writer = SimpleExcelWriter::create('php://output', 'csv');
44
0 commit comments