Skip to content

Commit

Permalink
[HttpFoundation] Fix phpdoc parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Appriou committed Feb 1, 2023
1 parent 8457e72 commit 5d32f6c
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -26,23 +26,23 @@ public function toString(): string
}

/**
* @param Response $other
* @param Response $response
*/
protected function matches($response): bool
{
return Response::HTTP_UNPROCESSABLE_ENTITY === $response->getStatusCode();
}

/**
* @param Response $other
* @param Response $response
*/
protected function failureDescription($response): string
{
return 'the Response '.$this->toString();
}

/**
* @param Response $other
* @param Response $response
*/
protected function additionalFailureDescription($response): string
{
Expand Down

0 comments on commit 5d32f6c

Please sign in to comment.