Skip to content

Commit 10d29bb

Browse files
committed
fix test
1 parent 9157849 commit 10d29bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
28+
php: ['7.0', '7.1', '7.2', '7.3', '7.4']
2929
#php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
3030

3131
#if: ${{ github.event_name != 'workflow_dispatch' || contains(github.event.inputs.php_version, matrix.php) }}

tests/DatabunkerproAPITest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class DatabunkerproAPITest extends TestCase
1010
private $api;
1111
private static $serverAvailable = false;
1212

13-
public static function setUpBeforeClass()
13+
public static function setUpBeforeClass(): void
1414
{
1515
$api = new DatabunkerproApi(
1616
getenv('DATABUNKER_URL'),
@@ -26,7 +26,7 @@ public static function setUpBeforeClass()
2626
}
2727
}
2828

29-
protected function setUp()
29+
protected function setUp(): void
3030
{
3131
if (!self::$serverAvailable) {
3232
$this->markTestSkipped('DatabunkerPro server is not available');

0 commit comments

Comments
 (0)