From d8ffb5cb5adfa15ef5447330833bf3671e2d0a61 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Sat, 6 Dec 2025 21:55:45 +0000 Subject: [PATCH 1/2] Use default FUNDING and ISSUE_TEMPLATE --- .github/FUNDING.yml | 4 ---- .github/ISSUE_TEMPLATE.md | 16 ---------------- 2 files changed, 20 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index f0dc531..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,4 +0,0 @@ -# These are supported funding model platforms - -open_collective: yiisoft -github: [yiisoft] diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index b748c2d..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,16 +0,0 @@ - - -### What steps will reproduce the problem? - -### What is the expected result? - -### What do you get instead? - - -### Additional info - -| Q | A -| ---------------- | --- -| Version | 1.0.? -| PHP version | -| Operating system | From cf76f7671c60f41d42ec378ef02711ec9752dd68 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sat, 6 Dec 2025 21:59:21 +0000 Subject: [PATCH 2/2] Apply fixes from StyleCI --- tests/TrustedHeaderProtocolResolverTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TrustedHeaderProtocolResolverTest.php b/tests/TrustedHeaderProtocolResolverTest.php index 37318e9..24607eb 100644 --- a/tests/TrustedHeaderProtocolResolverTest.php +++ b/tests/TrustedHeaderProtocolResolverTest.php @@ -199,7 +199,7 @@ public function schemeCallableFailureDataProvider(): array 'array' => [[['https']]], 'empty-array' => [[]], 'empty-string' => [['']], - 'object' => [[new StdClass()]], + 'object' => [[new stdClass()]], 'callable' => [[static fn () => 'https']], ]; }