--TEST-- Check for vtiful presence --SKIPIF-- --FILE-- './tests']; $excel = new \Vtiful\Kernel\Excel($config); $filePath = $excel->fileName("tutorial01.xlsx") ->header(['name', 'age']) ->data([ ['one', 10], ['two', 20], ['three', 30], ]) ->autoFilter("A1:B3") ->output(); var_dump($filePath); ?> --CLEAN-- --EXPECT-- string(23) "./tests/tutorial01.xlsx"