1 | <?php |
||
10 | class SpacesInEmptyLinesFixer extends AbstractSpacesInEmptyLines { |
||
11 | |||
12 | const NAME = 'spaces_in_empty_lines_fixes'; |
||
13 | |||
14 | |||
15 | /** |
||
16 | * @codeCoverageIgnore |
||
17 | * @inheritdoc |
||
18 | */ |
||
19 | public function getName() { |
||
22 | |||
23 | |||
24 | /** |
||
25 | * @codeCoverageIgnore |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getDescription() { |
||
31 | |||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | 4 | public function process(File $file, Report $report) { |
|
70 | |||
71 | |||
72 | /** |
||
73 | * @param string $value |
||
74 | * @return string |
||
75 | */ |
||
76 | 3 | protected function replaceEmptyLines($value) { |
|
79 | |||
80 | } |
||
81 |