| 123456789101112131415161718192021222324252627282930313233 | --TEST--Check for vtiful presence--SKIPIF--<?phprequire __DIR__ . '/include/skipif.inc';skip_disable_reader();?>--FILE--<?php$config   = ['path' => './tests'];$excel    = new \Vtiful\Kernel\Excel($config);$filePath = $excel->fileName('tutorial.xlsx')    ->header(['Item', 'Cost'])    ->data([        ['Item_1', 'Cost_1'],    ])    ->output();$excel->openFile('tutorial.xlsx')->nextCellCallback(function ($row, $cell, $data) {    echo 'cell:' . $cell . ', row:' . $row . ', value:' . $data . PHP_EOL;});?>--CLEAN--<?php@unlink(__DIR__ . '/tutorial.xlsx');?>--EXPECT--cell:0, row:0, value:Itemcell:1, row:0, value:Costcell:1, row:0, value:XLSX_ROW_ENDcell:0, row:1, value:Item_1cell:1, row:1, value:Cost_1cell:1, row:1, value:XLSX_ROW_END
 |