Skip to content

Commit 817833b

Browse files
author
Tim
committed
test setUp is now compatible with phpunit
1 parent dd925a5 commit 817833b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
operating-system: [ ubuntu-latest ]
15-
php-versions: [ '7.2', '7.3', '8.0', '8.2' ]
15+
php-versions: [ '7.2', '7.3', '8.2' ]
1616
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
1717
steps:
1818
- uses: actions/checkout@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.2 || ^7.3 || ~8.0",
19+
"php": "^7.2 || ^7.3 || ^8.2",
2020
"guzzlehttp/guzzle": "~4.0|~5.0|~6.0|~7.0"
2121
},
2222
"require-dev": {

tests/ApiClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ApiClientTest extends TestCase
1515
/** @var SendCloudApiClient */
1616
private $sendCloudApiClient;
1717

18-
protected function setUp()
18+
protected function setUp(): void
1919
{
2020
parent::setUp();
2121
$this->guzzleClient = $this->createMock(Client::class);

0 commit comments

Comments
 (0)