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