summaryrefslogtreecommitdiff
path: root/vendor/guzzlehttp/guzzle/src/Handler
diff options
context:
space:
mode:
authorwn_ <[email protected]>2023-12-22 16:51:04 +0000
committerwn_ <[email protected]>2023-12-22 16:51:23 +0000
commite85d47dfd4eee646aa00f60b21bbb076d9f19b26 (patch)
tree8e9030a7c4ad9f8f4c0a256ae6c7c798e16d496e /vendor/guzzlehttp/guzzle/src/Handler
parentd4ae6c67db8c966ab4998fda6df14072b103106b (diff)
Use Guzzle
Diffstat (limited to 'vendor/guzzlehttp/guzzle/src/Handler')
-rw-r--r--vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php b/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
index be88d9e49..16a942232 100644
--- a/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
+++ b/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
@@ -256,7 +256,7 @@ class CurlFactory implements CurlFactoryInterface
$method = $easy->request->getMethod();
if ($method === 'PUT' || $method === 'POST') {
- // See https://tools.ietf.org/html/rfc7230#section-3.3.2
+ // See https://datatracker.ietf.org/doc/html/rfc7230#section-3.3.2
if (!$easy->request->hasHeader('Content-Length')) {
$conf[\CURLOPT_HTTPHEADER][] = 'Content-Length: 0';
}