15 lines
322 B
PHP
Executable File
15 lines
322 B
PHP
Executable File
#!/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);
|
|
}
|