php functions to Store data

This commit is contained in:
schrom01 2023-02-14 23:20:53 +01:00
parent a945fca764
commit 930bd7de4b
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
/** @noinspection PhpIssetCanBeReplacedWithCoalesceInspection */ /** @noinspection PhpIssetCanBeReplacedWithCoalesceInspection */
namespace Shuchkin;
/** /**
* Class SimpleXLSXGen * Class SimpleXLSXGen

View File

@ -23,6 +23,6 @@ function write_xlsxFile($filename, $data) {
} }
$xlsx = \Shuchkin\SimpleXLSXGen::fromArray($data); $xlsx = SimpleXLSXGen::fromArray($data);
$xlsx->saveAs($filename); $xlsx->saveAs($filename);
} }