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 3, 2023
1 parent 3ce3ed8 commit 36cc5d9
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 36cc5d9

Please sign in to comment.