1 | <?php |
||
18 | class CLIReportGenerator implements ReportGenerator { |
||
19 | protected $lines = array(); |
||
20 | |||
21 | protected function line($content = "") { |
||
24 | |||
25 | /** |
||
26 | * @inheritdoc |
||
27 | */ |
||
28 | public function begin_run($commit_hash) { |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | */ |
||
34 | public function end_run() { |
||
36 | |||
37 | /** |
||
38 | * @inheritdoc |
||
39 | */ |
||
40 | public function begin_ruleset(Ruleset $rule) { |
||
44 | |||
45 | public function end_ruleset() { |
||
48 | |||
49 | /** |
||
50 | * @inheritdoc |
||
51 | */ |
||
52 | public function begin_rule(Rule $rule) { |
||
58 | |||
59 | public function end_rule() { |
||
63 | |||
64 | /** |
||
65 | * @inheritdoc |
||
66 | */ |
||
67 | public function report_violation(Violation $violation) { |
||
70 | } |
||
71 |