| 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 | public function propertiesUsed($command) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param object $command |
||
| 36 | * @param Exception $e |
||
| 37 | * @return string|null |
||
| 38 | */ |
||
| 39 | public function commandFailed($command, Exception $e) |
||
| 47 | } |
||
| 48 |