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.'; } diff --git a/composer.json b/composer.json index 36c0c1d19..8984e8f17 100644 --- a/composer.json +++ b/composer.json @@ -56,7 +56,7 @@ "require-dev": { "ext-simplexml": "*", "adriansuter/php-autoload-override": "^1.4", - "guzzlehttp/psr7": "^2.5", + "guzzlehttp/psr7": "^2.6", "httpsoft/http-message": "^1.1", "httpsoft/http-server-request": "^1.1", "laminas/laminas-diactoros": "^2.17",