| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 11 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | 1 | public function validate(RequestInterface $request): void |
|
| 17 | { |
||
| 18 | 1 | $this->logger->debug(sprintf( |
|
| 19 | 1 | "Start testing Request: [%s] %s", |
|
| 20 | 1 | $request->getMethod(), |
|
| 21 | 1 | $request->getUri() |
|
| 22 | 1 | )); |
|
| 23 | 1 | $this->decorated->validate($request); |
|
| 24 | 1 | $this->logger->debug(sprintf( |
|
| 25 | 1 | 'Finish testing Request: [%s] %s', |
|
| 26 | 1 | $request->getMethod(), |
|
| 27 | 1 | $request->getUri() |
|
| 28 | 1 | )); |
|
| 31 |