mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-23 21:08:29 +00:00
8dddf56c2e
This simplify code, increase readability and improve the function signature for API users.
33 lines
372 B
PHP
33 lines
372 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
'HELLO',
|
|
'HELLO ',
|
|
],
|
|
[
|
|
'HELLO',
|
|
' HELLO',
|
|
],
|
|
[
|
|
'HELLO',
|
|
' HELLO ',
|
|
],
|
|
[
|
|
' HELLO',
|
|
' HELLO',
|
|
],
|
|
[
|
|
'HELLO WORLD',
|
|
'HELLO WORLD',
|
|
],
|
|
[
|
|
'TRUE',
|
|
true,
|
|
],
|
|
[
|
|
null,
|
|
null,
|
|
],
|
|
];
|