1 | <?php |
||
11 | class LineAfterOpenTagReview extends AbstractLineAfterOpenTag { |
||
12 | |||
13 | const NAME = 'php_line_after_open_tag_review'; |
||
14 | |||
15 | |||
16 | /** |
||
17 | * @return string |
||
18 | */ |
||
19 | public function getDescription() { |
||
22 | |||
23 | |||
24 | /** |
||
25 | * Return unique string of the tool |
||
26 | * Review tools should have ending `_review` |
||
27 | * Fixer tools should have ending `_fixer` |
||
28 | * |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getName() { |
||
34 | |||
35 | |||
36 | /** |
||
37 | * @param FileInfo $file |
||
38 | * @param Report $report |
||
39 | */ |
||
40 | public function process(FileInfo $file, Report $report) { |
||
52 | |||
53 | } |