PHP code example of automattic / jetpack-stub-generator
1. Go to this page and download the library: Download automattic/jetpack-stub-generator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
automattic / jetpack-stub-generator example snippets
return [
// Text to put at the top of the output, after the opening ``. Default empty.
'header' => '',
// Text to put at the end of the output. Default empty.
'footer' => '',
// Set true to strip descriptions and unrecognized tags from the phpdoc.
'strip-docs' => false,
// Path which `files` are relative to. Defaults to the directory containing the definition file,
// and if it's relative it's relative to that.
'basedir' => '.',
// Files to process, and what to extract from them.
'files' => [
'path/to/file.php' => [
// Constants to extract, by name.
'constant' => [ 'CONSTANT_ONE', 'CONSTANT_TWO' ],
// Functions to extract, by name.
'function' => [ 'functionOne', 'functionTwo' ],
// Classes to extract,
'class' => [
'ClassName' => [
'constant' => [ 'CLASS_CONSTANT' ],
'property' => [ 'propertyName' ],
'method' => [ 'methodName', 'staticOrDynamicNoDifference' ],
],
],
'interface' => [ /* constants, properties, and methods, just like classes */ ],
'trait' => [ /* constants, properties, and methods, just like classes */ ],
],
// A `'*'` can be used to avoid having to list everything, if you want everything in a file.
'path/to/file2.php' => [
// If you want to extract everything in a category from the file, you can do it like this.
'function' => '*',
'class' => [
// It also works for extracting parts of classes, interfaces, and traits.
'ClassName' => [
'property' => '*',
'method' => '*',
],
// And for whole classes, interfaces, and traits for that matter.
'ClassName2' => '*',
],
],
// This works too.
'path/to/file3.php' => '*',
// OTOH, there's no globbing or "entire directory" functionality for filenames.
// Since this is a PHP file, you can easily do that yourself.
],
];