Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | public function testIssue3227(): void |
||
11 | { |
||
12 | $filename = 'tests/data/Reader/XLSX/issue.3277.xlsx'; |
||
13 | $reader = IOFactory::createReader('Xlsx'); |
||
14 | $spreadsheet = $reader->load($filename); |
||
15 | |||
16 | $array = $spreadsheet->getActiveSheet()->toArray(); |
||
17 | |||
18 | self::assertSame('data', $array[0][0]); |
||
19 | } |
||
21 |