-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathMarkdownDouble.php
More file actions
68 lines (59 loc) · 1.51 KB
/
MarkdownDouble.php
File metadata and controls
68 lines (59 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* Test double for the Markdown doc generator.
*
* @copyright 2024 PHPCSStandards and contributors
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Tests\Core\Generators\Fixtures;
use PHP_CodeSniffer\Generators\Markdown;
class MarkdownDouble extends Markdown
{
/**
* Format the markdown footer without the date or version nr to make the expectation fixtures stable.
*
* @return string
*/
protected function getFormattedFooter()
{
$output = PHP_EOL.'Documentation generated on *REDACTED*';
$output .= ' by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)'.PHP_EOL;
return $output;
}
/**
* Retrieve the _real_ footer of the markdown page.
*
* @return string
*/
public function getRealFooter()
{
return parent::getFormattedFooter();
}
/**
* [VISIBILITY WIDENING ONLY] Print the header of the HTML page.
*
* @return void
*/
public function printHeader()
{
parent::printHeader();
}
/**
* [VISIBILITY WIDENING ONLY] Print the table of contents for the standard.
*
* @return void
*/
public function printToc()
{
parent::printToc();
}
/**
* [VISIBILITY WIDENING ONLY] Print the footer of the HTML page.
*
* @return void
*/
public function printFooter()
{
parent::printFooter();
}
}