--TEST-- Check for vtiful presence --SKIPIF-- --FILE-- './tests']; $excel = new \Vtiful\Kernel\Excel($config); $fileObject = $excel->fileName("tutorial01.xlsx"); $fileObject->header(['name', 'age']) ->data([['viest', 21]]); $fileObject->addSheet('twoSheet') ->header(['name', 'age']) ->data([['vikin', 22]]); $filePath = $fileObject->output(); var_dump($filePath); ?> --CLEAN-- --EXPECT-- string(23) "./tests/tutorial01.xlsx"