1 | <?php |
||
12 | class LineBeforeClassEndFixer extends AbstractLineBeforeClassEnd { |
||
13 | |||
14 | const NAME = 'php_line_before_class_end_fixer'; |
||
15 | |||
16 | |||
17 | /** |
||
18 | * @inheritdoc |
||
19 | */ |
||
20 | public function getName() { |
||
23 | |||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getDescription() { |
||
31 | |||
32 | |||
33 | /** |
||
34 | * @param File $file |
||
35 | * @param Report $report |
||
36 | * @void |
||
37 | */ |
||
38 | 4 | public function process(File $file, Report $report) { |
|
54 | |||
55 | |||
56 | /** |
||
57 | * @param Token $token |
||
58 | * @param string $emptyLines |
||
59 | * @return string |
||
60 | */ |
||
61 | 3 | protected function getTokenNewValue(Token $token, $emptyLines) { |
|
72 | |||
73 | } |