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

62 lines
828 B
PHP

<?php
// Settlement, Maturity, Frequency, Basis, Result
return [
[
181,
'25-Jan-2007',
'15-Nov-2008',
2,
1,
],
[
90,
'2011-01-01',
'2012-10-25',
4,
],
[
182.5,
'25-Jan-2007',
'15-Nov-2008',
2,
3,
],
[
365,
'25-Jan-2007',
'15-Nov-2008',
1,
1,
],
[
365,
'25-Jan-2010',
'15-Nov-2011',
1,
1,
],
[
'#VALUE!',
'Invalid Date',
'15-Nov-2008',
2,
1,
],
[
'#VALUE!',
'25-Jan-2007',
'Invalid Date',
2,
1,
],
[
'#NUM!',
'25-Jan-2007',
'15-Nov-2008',
3,
1,
],
];