mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-19 21:50:46 +00:00
8dddf56c2e
This simplify code, increase readability and improve the function signature for API users.
45 lines
497 B
PHP
45 lines
497 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
null,
|
|
null,
|
|
'Error',
|
|
],
|
|
[
|
|
true,
|
|
true,
|
|
'Error',
|
|
],
|
|
[
|
|
42,
|
|
42,
|
|
'Error',
|
|
],
|
|
[
|
|
'',
|
|
'',
|
|
'Error',
|
|
],
|
|
[
|
|
'ABC',
|
|
'ABC',
|
|
'Error',
|
|
],
|
|
[
|
|
'Error',
|
|
'#VALUE!',
|
|
'Error',
|
|
],
|
|
[
|
|
'Error',
|
|
'#NAME?',
|
|
'Error',
|
|
],
|
|
[
|
|
'Error',
|
|
'#N/A',
|
|
'Error',
|
|
],
|
|
];
|