| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | abstract class FrontCommand |
||
| 12 | { |
||
| 13 | protected ?ServerRequest $request = null; |
||
| 14 | |||
| 15 | protected ?Response $response = null; |
||
| 16 | |||
| 17 | abstract public function process(): void; |
||
| 18 | |||
| 19 | 1 | public function init(ServerRequest $request, Response $response) |
|
| 23 | 1 | } |
|
| 24 | |||
| 25 | 1 | public function getResponse(): Response |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | protected function forward(string $target): void |
|
| 37 |