PhpSpreadsheet/tests/data/Calculation/MathTrig/MOD.php
Adrien Crivelli 8dddf56c2e
Use proper syntax for variadic functions
This simplify code, increase readability and improve the function
signature for API users.
2017-01-23 15:01:20 +09:00

55 lines
509 B
PHP

<?php
return [
[
2,
19,
17,
],
[
-7,
19,
-13,
],
[
0,
34,
17,
],
[
'#DIV/0!',
34,
0,
],
[
1,
3,
2,
],
[
1,
-3,
2,
],
[
-1,
3,
-2,
],
[
-1,
-3,
-2,
],
[
1.2,
2.5,
1.3,
],
[
0,
'',
1,
],
];