PhpSpreadsheet/tests/data/Calculation/Logical/IFS.php

51 lines
563 B
PHP
Raw Normal View History

<?php
return [
[
'#N/A',
],
[
1,
true,
1,
],
[
'#N/A',
false,
1,
true,
],
[
'ABC',
true,
'ABC',
],
[
'#N/A',
false,
false,
false,
1,
false,
'ABC',
],
[
'ABC',
false,
false,
false,
1,
true,
'ABC',
],
[
false,
true,
false,
false,
1,
true,
'ABC',
],
];