mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 11:08:32 +00:00
a67a981d5e
Fix #4383.
9 lines
172 B
PHP
9 lines
172 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
[1, true], // Boolean okay for ODS, not for Excel/Gnumeric
|
|
[0, false], // Boolean okay for ODS, not for Excel/Gnumeric
|
|
];
|