1 | <?php |
||
17 | class UIHelper |
||
18 | { |
||
19 | /** |
||
20 | * @param OutputInterface $output |
||
21 | * @param string $configFile |
||
22 | * @param string $version |
||
23 | */ |
||
24 | public static function displayStartingBlock(OutputInterface $output, $configFile, $version) |
||
28 | |||
29 | /** |
||
30 | * @param RuleInterface $rule |
||
31 | * @param OutputInterface $output |
||
32 | */ |
||
33 | public static function displayRuleSuccess(RuleInterface $rule, OutputInterface $output) |
||
37 | |||
38 | /** |
||
39 | * @param RuleViolationException $e |
||
40 | * @param OutputInterface $output |
||
41 | */ |
||
42 | public static function displayRuleViolation(RuleViolationException $e, OutputInterface $output) |
||
52 | |||
53 | /** |
||
54 | * @param \Exception $e |
||
55 | * @param OutputInterface $output |
||
56 | */ |
||
57 | public static function displayException(\Exception $e, OutputInterface $output) |
||
61 | } |