sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/Calculation/Logical/XOR.php
Ryan Prather d52454d1bb Updates to 3rd party libraries
Add Dockerfile and specific docker-php.ini
2018-08-28 21:27:13 -04:00

53 lines
642 B
PHP

<?php
return [
// No arguments
[
'#VALUE!',
],
[
false,
1 > 0, 2 > 0,
],
[
true,
true, false, false,
],
[
true,
1 > 0, 0 > 1,
],
[
true,
0 > 1, 2 > 0,
],
[
false,
0 > 1, 0 > 2,
],
[
false,
1 > 0, 2 > 0, 0 > 1, 0 > 2,
],
[
true,
1 > 0, 2 > 0, 3 > 0, 0 > 1,
],
[
false,
'TRUE',
1,
0.5,
],
[
true,
'FALSE',
1.5,
0,
],
[
'#VALUE!',
'HELLO WORLD',
],
];