summaryrefslogtreecommitdiffstats
path: root/debian/patches/php8.2.patch
blob: 6e272a8b8fab551c7b08ed321351f1daaf1bd115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Fix issues with php8.2.
Author: Bas Couwenberg <sebastic@debian.org>
Bug: https://github.com/Icinga/icingaweb2/issues/4918

--- a/vendor/guzzlehttp/psr7/src/CachingStream.php
+++ b/vendor/guzzlehttp/psr7/src/CachingStream.php
@@ -20,6 +20,8 @@ class CachingStream implements StreamInt
     /** @var int Number of bytes to skip reading due to a write on the buffer */
     private $skipReadBytes = 0;
 
+    private $stream;
+
     /**
      * We will treat the buffer object as the body of the stream
      *