function HTML::printFooter
Print the footer of the HTML page.
Return value
void
1 call to HTML::printFooter()
- HTML::generate in vendor/
squizlabs/ php_codesniffer/ src/ Generators/ HTML.php - Generates the documentation for a standard.
File
-
vendor/
squizlabs/ php_codesniffer/ src/ Generators/ HTML.php, line 176
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.
$errorLevel = error_reporting(0);
echo ' <div class="tag-line">';
echo 'Documentation generated on ' . date('r');
echo ' by <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer">PHP_CodeSniffer ' . Config::VERSION . '</a>';
echo '</div>' . PHP_EOL;
error_reporting($errorLevel);
echo ' </body>' . PHP_EOL;
echo '</html>' . PHP_EOL;
}