Skip to content

Commit 56965fa

Browse files
Merge branch '5.4' into 6.2
* 5.4: CS fix Fix test provider
2 parents 88dc0f0 + 28d8a15 commit 56965fa

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: ConstraintTrait.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
namespace Symfony\Bridge\PhpUnit;
1313

1414
use PHPUnit\Framework\Constraint\Constraint;
15-
use ReflectionClass;
1615

17-
$r = new ReflectionClass(Constraint::class);
16+
$r = new \ReflectionClass(Constraint::class);
1817
if ($r->getProperty('exporter')->isProtected()) {
1918
trait ConstraintTrait
2019
{

Diff for: Tests/ExpectDeprecationTraitTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public function testOne()
3333
* Do not remove this test in the next major version.
3434
*
3535
* @group legacy
36+
*
3637
* @runInSeparateProcess
3738
*/
3839
public function testOneInIsolation()

Diff for: Tests/FailTests/ExpectDeprecationTraitTestFail.php

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public function testOne()
3939
* Do not remove this test in the next major version.
4040
*
4141
* @group legacy
42+
*
4243
* @runInSeparateProcess
4344
*/
4445
public function testOneInIsolation()

0 commit comments

Comments
 (0)