Skip to content

Commit f27a94b

Browse files
author
Jozef Pistej
committed
updated phpunit
1 parent 7655b13 commit f27a94b

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- '7.1'
54
- '7.2'
65
- '7.3'
76
- '7.4'

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"license": "BSD-3-Clause",
1414
"require": {
15-
"php": ">=7.1",
15+
"php": ">=7.2",
1616
"opentracing/opentracing": "^1.0.0",
1717
"ralouphie/getallheaders": "^2.0 || ^3.0",
1818
"yiisoft/yii": "^1.1.18"
@@ -22,7 +22,7 @@
2222
},
2323
"require-dev": {
2424
"jonahgeorge/jaeger-client-php": "dev-master",
25-
"phpunit/phpunit": "^6.5.14",
25+
"phpunit/phpunit": "^8.5.0",
2626
"roave/security-advisories": "dev-master"
2727
},
2828
"suggest": {

tests/ActiveRecordBehaviorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function testTraceDelete()
7474
$activeRecord->delete();
7575
}
7676

77-
protected function setUp()
77+
protected function setUp(): void
7878
{
7979
parent::setUp();
8080

tests/Support/TestCase/DatabaseIntegrationTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
abstract class DatabaseIntegrationTestCase extends TestCase
88
{
9-
protected function setUp()
9+
protected function setUp():void
1010
{
1111
parent::setUp();
1212

tests/Support/TestCase/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
abstract class TestCase extends \PHPUnit\Framework\TestCase
88
{
9-
protected function tearDown()
9+
protected function tearDown(): void
1010
{
1111
$this->destroyApplication();
1212

0 commit comments

Comments
 (0)