a91acec5d9
* Stricter-typed comparison testing in COUNTIF() and COUNTIFS() evaluation [Issue #1046](https://github.com/PHPOffice/PhpSpreadsheet/issues/1046) * Codestyle * Codestyle * Codestyle in tests
25 lines
302 B
PHP
25 lines
302 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
2,
|
|
['Y', 'Y', 'N'],
|
|
'=Y',
|
|
],
|
|
[
|
|
3,
|
|
['A', 'B', 'C', 'B', 'B'],
|
|
'=B',
|
|
],
|
|
[
|
|
3,
|
|
['C', 'B', 'A', 'B', 'B'],
|
|
'=B',
|
|
],
|
|
[
|
|
2,
|
|
[1, 2, 3, 'B', '', false],
|
|
'<=2',
|
|
],
|
|
];
|