Skip to content

Commit

Permalink
Merge pull request #3253 from jsanahuja/fix-http-bad-request-exceptio…
Browse files Browse the repository at this point in the history
…n-literal

Fix HttpBadRequestException description
  • Loading branch information
l0gicgate committed Mar 7, 2023
2 parents fdf2dab + 591d112 commit 6d05f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Slim/Exception/HttpBadRequestException.php
Expand Up @@ -23,6 +23,6 @@ class HttpBadRequestException extends HttpSpecializedException
protected $message = 'Bad request.';

protected string $title = '400 Bad Request';
protected string $description = 'The server cannot or will not process' .
protected string $description = 'The server cannot or will not process ' .
'the request due to an apparent client error.';
}

0 comments on commit 6d05f11

Please sign in to comment.