function Markdown::printFooter
Print the markdown footer.
Return value
void
1 call to Markdown::printFooter()
- Markdown::generate in vendor/
squizlabs/ php_codesniffer/ src/ Generators/ Markdown.php - Generates the documentation for a standard.
File
-
vendor/
squizlabs/ php_codesniffer/ src/ Generators/ Markdown.php, line 68
Class
Namespace
PHP_CodeSniffer\GeneratorsCode
protected function printFooter() {
// Turn off errors so we don't get timezone warnings if people
// don't have their timezone set.
error_reporting(0);
echo 'Documentation generated on ' . date('r');
echo ' by [PHP_CodeSniffer ' . Config::VERSION . '](https://github.com/PHPCSStandards/PHP_CodeSniffer)' . PHP_EOL;
}