Skip to content

Commit 25f6a27

Browse files
authored
Add php 8.2 to test matrix (#996)
1 parent a1d3f8a commit 25f6a27

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
22+
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
2323
steps:
2424
- uses: "actions/checkout@v2"
2525
- uses: "shivammathur/setup-php@v2"
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
fail-fast: false
7474
matrix:
75-
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
75+
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
7676
steps:
7777
- uses: "actions/checkout@v2"
7878
- uses: "shivammathur/setup-php@v2"

test/src/Tool/ProviderRedirectTraitTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ class ProviderRedirectTraitTest extends TestCase
1515
{
1616
use ProviderRedirectTrait;
1717

18+
/**
19+
* @var ClientInterface
20+
*/
21+
private $httpClient;
22+
1823
public function getHttpClient()
1924
{
2025
return $this->httpClient;

0 commit comments

Comments
 (0)