#!/usr/bin/env php getProperty('phpSpreadsheetFunctions'); $phpSpreadsheetFunctionsProperty->setAccessible(true); $phpSpreadsheetFunctions = $phpSpreadsheetFunctionsProperty->getValue(); ksort($phpSpreadsheetFunctions); file_put_contents(__DIR__ . '/../docs/references/function-list-by-category.md', DocumentGenerator::generateFunctionListByCategory($phpSpreadsheetFunctions) ); file_put_contents(__DIR__ . '/../docs/references/function-list-by-name.md', DocumentGenerator::generateFunctionListByName($phpSpreadsheetFunctions) ); } catch (ReflectionException $e) { fwrite(STDERR, (string) $e); exit(1); }