--TEST-- Check for vtiful presence --SKIPIF-- --FILE-- './tests' ]; $fileObject = new \Vtiful\Kernel\Excel($config); $fileObject = $fileObject->fileName('tutorial.xlsx'); $fileHandle = $fileObject->getHandle(); $format = new \Vtiful\Kernel\Format($fileHandle); $style = $format->background( \Vtiful\Kernel\Format::PATTERN_LIGHT_UP, \Vtiful\Kernel\Format::COLOR_RED )->toResource(); $filePath = $fileObject->header(['name', 'age']) ->data([ ['viest', 21], ['wjx', 21] ]) ->setRow('A1', 50, $style) ->output(); var_dump($filePath); ?> --CLEAN-- --EXPECT-- string(21) "./tests/tutorial.xlsx"