From 5aa17e456a2fdeffa9e702c5e454c0fe34ae3a35 Mon Sep 17 00:00:00 2001 From: Oliver Maksimovic Date: Tue, 17 Mar 2026 14:01:46 +0100 Subject: [PATCH 1/2] add php 8.5 to the matrix --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a83b2cd..099615a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,10 @@ jobs: - '7.4' - '8.0' - '8.1' + - '8.2' + - '8.3' + - '8.4' + - '8.5' runs-on: ${{ matrix.os }} From 8e5914f10393ee86b57489aa7e4845e6b88f72a6 Mon Sep 17 00:00:00 2001 From: Oliver Maksimovic Date: Tue, 17 Mar 2026 14:05:26 +0100 Subject: [PATCH 2/2] fix dynamic property --- tests/Internal/DummyFileSystemStream.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/Internal/DummyFileSystemStream.php b/tests/Internal/DummyFileSystemStream.php index 6cbacc9..6baf9c4 100644 --- a/tests/Internal/DummyFileSystemStream.php +++ b/tests/Internal/DummyFileSystemStream.php @@ -18,6 +18,9 @@ */ class DummyFileSystemStream { + /** @var resource|null */ + public $context; + /** @var resource */ private $fp;