mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-23 16:42:11 +00:00
a67a981d5e
Fix #4383.
9 lines
166 B
PHP
9 lines
166 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
[1, true], // ODS accepts boolean, Excel/Gnumeric don't
|
|
[0, false], // ODS accepts boolean, Excel/Gnumeric don't
|
|
];
|