diff --git a/src/ValinorDecoder.php b/src/ValinorDecoder.php index 1c88482..3f17356 100644 --- a/src/ValinorDecoder.php +++ b/src/ValinorDecoder.php @@ -14,7 +14,7 @@ /** * @template T of object - * @implements MapperInterface + * @implements MapperInterface */ final class ValinorDecoder implements DecoderInterface, MapperInterface { @@ -44,7 +44,7 @@ public function map(ResponseInterface $response): ?object if ($status >= 200 && $status < 300) { return $this->mapper->map($this->signature, $this->decode($response)); } else { - return ErrorResponse::fromResponse($response); // @phpstan-ignore-line + return ErrorResponse::fromResponse($response); } }