Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function handler(mixed $message, array $context = []): string |
||
33 | { |
||
34 | if ($this->nextHandler instanceof HandlerInterface) { |
||
35 | return $this->nextHandler->handler($message, $context); |
||
36 | } |
||
37 | |||
38 | $clear = addslashes($this->clearEof($message)); |
||
39 | |||
40 | return sprintf('"%s" {}', $clear); |
||
41 | } |
||
61 |