1 | <?php |
||
9 | class ClassNameFormatter implements Formatter |
||
10 | { |
||
11 | /** |
||
12 | * @param object $command |
||
13 | * @return string|null |
||
14 | */ |
||
15 | public function commandReceived($command) |
||
19 | |||
20 | /** |
||
21 | * @param object $command |
||
22 | * @return string|null |
||
23 | */ |
||
24 | public function commandHandled($command) |
||
28 | |||
29 | /** |
||
30 | * @param object $command |
||
31 | * @return string|null |
||
32 | */ |
||
33 | public function commandFailed($command) |
||
37 | |||
38 | /** |
||
39 | * {@inheritDoc} |
||
40 | */ |
||
41 | public function commandContext($command) |
||
45 | |||
46 | /** |
||
47 | * {@inheritDoc} |
||
48 | */ |
||
49 | public function failureContext(array $currentContext, \Exception $e) |
||
53 | } |
||
54 |