Skip to content

Commit

Permalink
Update to Codeception 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
weirdan committed Apr 5, 2020
1 parent 4b662fd commit 20e147f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"vimeo/psalm": "^3.6.2 || dev-master"
},
"require-dev": {
"codeception/base": "^2.5",
"codeception/codeception": "^4.0.3",
"squizlabs/php_codesniffer": "^3.3.1",
"weirdan/codeception-psalm-module": "^0.4.0"
},
Expand Down
6 changes: 3 additions & 3 deletions tests/acceptance/TestCase.feature
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Feature: TestCase
private $i;
/** @return void */
public function setUp() {
public function setUp(): void {
$this->i = $this->prophesize(I::class);
}
Expand Down Expand Up @@ -712,7 +712,7 @@ Feature: TestCase
private $i;
/** @return void */
public function setUp() {
public function setUp(): void {
$this->i = $this->prophesize(I::class);
}
Expand All @@ -739,7 +739,7 @@ Feature: TestCase
protected $i;
/** @return void */
public function setUp() {
public function setUp(): void {
$this->i = $this->prophesize(I::class);
}
}
Expand Down

0 comments on commit 20e147f

Please sign in to comment.