1 | <?php |
||
10 | class UnstyledLogOutputStyler implements LogOutputStylerInterface |
||
11 | { |
||
12 | public function createOutputWrapper(OutputInterface $output) |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | public function defaultStyles() |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function style($context) |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | protected function write($output, $message, $context) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function log($output, $level, $message, $context) |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function success($output, $level, $message, $context) |
||
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function error($output, $level, $message, $context) |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function warning($output, $level, $message, $context) |
||
72 | |||
73 | /** |
||
74 | * {@inheritdoc} |
||
75 | */ |
||
76 | public function note($output, $level, $message, $context) |
||
80 | |||
81 | /** |
||
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | public function caution($output, $level, $message, $context) |
||
88 | |||
89 | /** |
||
90 | * Look up the label and message styles for the specified log level, |
||
91 | * and use the log level as the label for the log message. |
||
92 | */ |
||
93 | protected function formatMessageByLevel($level, $message, $context) |
||
97 | } |
||
98 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.