--TEST-- Check for vtiful presence --SKIPIF-- --FILE-- './tests']; $excel = new \Vtiful\Kernel\Excel($config); $fileObject = $excel->fileName('12.xlsx'); $fileHandle = $fileObject->getHandle(); $format = new \Vtiful\Kernel\Format($fileHandle); $boldStyle = $format->bold()->toResource(); $filePath = $fileObject->header(['name', 'age']) ->data([ ['viest', 21], ['wjx', 21], ['abc', 21] ]) ->setRow('A1', 200, $boldStyle) ->setRow('A2:A3', 200, $boldStyle) ->setRow('A4:A4', 200, null) ->output(); var_dump($filePath); ?> --CLEAN-- --EXPECT-- string(15) "./tests/12.xlsx"