Skip to content

Commit 90ff834

Browse files
Various CS fixes
1 parent db6726c commit 90ff834

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Cloner/VarClonerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ class VarClonerTest extends TestCase
2727
{
2828
public function testAddCaster()
2929
{
30-
$o1 = new class() {
30+
$o1 = new class {
3131
public string $p1 = 'p1';
3232
};
33-
$o2 = new class() {
33+
$o2 = new class {
3434
public string $p2 = 'p2';
3535
};
3636

0 commit comments

Comments
 (0)