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