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,
|
|
],
|
|
];
|