From 47ab47349473c98deb115d3fdee521e1178f94f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20B=C3=A9rub=C3=A9?= Date: Mon, 2 Oct 2023 22:58:55 -0600 Subject: [PATCH] fix line length --- Slim/Exception/HttpTooManyRequestsException.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.'; }