| 1234567891011121314151617181920212223242526 |
- <?php
- use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
- return [
- [
- ['https://phpspreadsheet.readthedocs.io/en/latest/', 'https://phpspreadsheet.readthedocs.io/en/latest/'],
- 'https://phpspreadsheet.readthedocs.io/en/latest/',
- null,
- ],
- [
- ['https://phpspreadsheet.readthedocs.io/en/latest/', 'Read the Docs'],
- 'https://phpspreadsheet.readthedocs.io/en/latest/',
- 'Read the Docs',
- ],
- [
- 'exception',
- null,
- null,
- ],
- [
- ExcelError::REF(),
- '',
- null,
- ],
- ];
|