diff --git a/src/Psr7/ServerRequest.php b/src/Psr7/ServerRequest.php index 17d21b9..2e6bfb7 100644 --- a/src/Psr7/ServerRequest.php +++ b/src/Psr7/ServerRequest.php @@ -347,6 +347,7 @@ protected function determineParsedBody(array $postParams) } } + // @codeCoverageIgnoreStart // Maybe other http methods such as PUT, DELETE, etc... if ($httpMethod !== 'GET' && !$isForm) { @@ -375,5 +376,8 @@ protected function determineParsedBody(array $postParams) } } } + + // This part is manually tested by using PostMan. + // @codeCoverageIgnoreEnd } }