PhpSpreadsheet/bin/generate-document

15 lines
322 B
Plaintext
Raw Normal View History

#!/usr/bin/env php
<?php
use PhpOffice\PhpSpreadsheet\DocumentGenerator;
require_once __DIR__ . '/../src/Bootstrap.php';
try {
DocumentGenerator::generateFunctionListByCategory();
DocumentGenerator::generateFunctionListByName();
} catch (ReflectionException $e) {
fwrite(STDERR, (string)$e);
exit(1);
}