Skip to content

Commit 638d3f0

Browse files
committed
support for PHPUnit 7.x; drop support for PHPUnit 6.x
1 parent fca952f commit 638d3f0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
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.0
54
- 7.1
65
- 7.2
76

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=7.0.0",
13+
"php": ">=7.1.0",
1414
"myclabs/deep-copy": "~1.1",
15-
"phpunit/phpunit": "^6.0"
15+
"phpunit/phpunit": "^7.0"
1616
},
1717
"autoload": {
1818
"psr-0": {

src/Codeception/Specify/ResultPrinter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class ResultPrinter extends \PHPUnit\TextUI\ResultPrinter
77
/**
88
* @param string $progress
99
*/
10-
protected function writeProgress($progress)
10+
protected function writeProgress($progress) : void
1111
{
1212
$this->write($progress);
1313
$this->column++;

0 commit comments

Comments
 (0)