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