Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f47a90e

Browse files
committedAug 22, 2024
Avoid mandatory void return type of the inherited setUp method in PHPUnit 10
This is done by renaming the inherited `setUp` method to a new `setUpTestCase` method and adding an `@before` annotation.
1 parent 9569a83 commit f47a90e

4 files changed

+20
-4
lines changed
 

‎tests/Constraint/ConstraintTest.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ class ConstraintTest extends TestCase
2525
*/
2626
protected $versionProvide;
2727

28-
protected function setUp()
28+
/**
29+
* @before
30+
* @return void
31+
*/
32+
public function setUpTestCase()
2933
{
3034
$this->constraint = new Constraint('==', '1');
3135
$this->versionProvide = new Constraint('==', 'dev-foo');

‎tests/Constraint/MatchAllConstraintTest.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ class MatchAllConstraintTest extends TestCase
2424
*/
2525
protected $matchAllConstraint;
2626

27-
protected function setUp()
27+
/**
28+
* @before
29+
* @return void
30+
*/
31+
public function setUpTestCase()
2832
{
2933
$this->versionProvide = new Constraint('==', '1.1');
3034
$this->matchAllConstraint = new MatchAllConstraint();

‎tests/Constraint/MatchNoneConstraintTest.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ class MatchNoneConstraintTest extends TestCase
2020
*/
2121
protected $matchNoneConstraint;
2222

23-
protected function setUp()
23+
/**
24+
* @before
25+
* @return void
26+
*/
27+
public function setUpTestCase()
2428
{
2529
$this->matchNoneConstraint = new MatchNoneConstraint();
2630
}

‎tests/Constraint/MultiConstraintTest.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ class MultiConstraintTest extends TestCase
2626
*/
2727
protected $versionRequireEnd;
2828

29-
protected function setUp()
29+
/**
30+
* @before
31+
* @return void
32+
*/
33+
public function setUpTestCase()
3034
{
3135
$this->versionRequireStart = new Constraint('>', '1.0');
3236
$this->versionRequireEnd = new Constraint('<', '1.2');

0 commit comments

Comments
 (0)
Please sign in to comment.