| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | final class History implements Journal |
||
| 27 | { |
||
| 28 | private ?ResponseInterface $lastResponse = null; |
||
| 29 | |||
| 30 | 1 | #[Override] |
|
| 31 | 1 | public function addFailure(RequestInterface $request, ClientExceptionInterface $exception): void {} |
|
| 32 | |||
| 33 | 1 | #[Override] |
|
| 34 | public function addSuccess(RequestInterface $request, ResponseInterface $response): void |
||
| 35 | { |
||
| 36 | 1 | $this->lastResponse = $response; |
|
| 37 | } |
||
| 38 | |||
| 39 | 2 | public function getLastResponse(): ?ResponseInterface |
|
| 42 | } |
||
| 43 | } |
||
| 44 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths