diff --git a/Slim/Exception/HttpTooManyRequestsException.php b/Slim/Exception/HttpTooManyRequestsException.php index c99236d3b..be4b29bb3 100644 --- a/Slim/Exception/HttpTooManyRequestsException.php +++ b/Slim/Exception/HttpTooManyRequestsException.php @@ -23,5 +23,6 @@ class HttpTooManyRequestsException extends HttpSpecializedException protected $message = 'Too many requests.'; protected string $title = '429 Too Many Requests'; - protected string $description = 'The client application has surpassed its rate limit, or number of requests they can send in a given period of time.'; + protected string $description = 'The client application has surpassed its rate limit, ' . + 'or number of requests they can send in a given period of time.'; }