| 12345678910111213141516171819202122232425262728293031323334 | --TEST--Check for vtiful presence--SKIPIF--<?php if (!extension_loaded("xlswriter")) print "skip"; ?>--FILE--<?php$config = [    'path' => './tests'];$fileObject  = new \Vtiful\Kernel\Excel($config);$fileObject = $fileObject->fileName('tutorial.xlsx');$fileHandle = $fileObject->getHandle();$format      = new \Vtiful\Kernel\Format($fileHandle);$numberStyle = $format->number('#,##0')->toResource();$filePath = $fileObject->header(['name', 'balance'])    ->data([        ['viest', 10000],        ['wjx',   100000]    ])    ->setColumn('B:B', 50, $numberStyle)    ->output();var_dump($filePath);?>--CLEAN--<?php@unlink(__DIR__ . '/tutorial.xlsx');?>--EXPECT--string(21) "./tests/tutorial.xlsx"
 |