Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
24 | abstract class AbstractFormat implements LogFormatterConcreteInterface |
||
25 | { |
||
26 | public function format(Request $request, Response|null $response, ?\Throwable $exception, ?string $message = null): string |
||
42 | ); |
||
43 | } |
||
44 | |||
45 | abstract protected function getVarValue(Request $request, Response|null $response, ?\Throwable $exception): string; |
||
46 | |||
47 | abstract protected function getVarName(): string; |
||
48 | } |
||
49 |