summaryrefslogtreecommitdiffstats
path: root/vendor/guzzlehttp/psr7/src/Header.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:30:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:30:22 +0000
commit3094c54084a305de471e7a530468a5a3b3b34dc7 (patch)
tree0a5f62e9d1963d4f5715acefc2c8e6dad932eaaa /vendor/guzzlehttp/psr7/src/Header.php
parentAdding debian version 0.13.1-1. (diff)
downloadicinga-php-library-3094c54084a305de471e7a530468a5a3b3b34dc7.tar.xz
icinga-php-library-3094c54084a305de471e7a530468a5a3b3b34dc7.zip
Merging upstream version 0.13.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/guzzlehttp/psr7/src/Header.php')
-rw-r--r--vendor/guzzlehttp/psr7/src/Header.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/guzzlehttp/psr7/src/Header.php b/vendor/guzzlehttp/psr7/src/Header.php
index 6e38e00..bbce8b0 100644
--- a/vendor/guzzlehttp/psr7/src/Header.php
+++ b/vendor/guzzlehttp/psr7/src/Header.php
@@ -22,7 +22,7 @@ final class Header
foreach ((array) $header as $value) {
foreach (self::splitList($value) as $val) {
$part = [];
- foreach (preg_split('/;(?=([^"]*"[^"]*")*[^"]*$)/', $val) as $kvp) {
+ foreach (preg_split('/;(?=([^"]*"[^"]*")*[^"]*$)/', $val) ?: [] as $kvp) {
if (preg_match_all('/<[^>]+>|[^=]+/', $kvp, $matches)) {
$m = $matches[0];
if (isset($m[1])) {