Skip to content

Commit 10f9d9a

Browse files
author
Daniel Kurowski
committed
tests: fix cs of generated objects
1 parent da0b87d commit 10f9d9a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

tests/Console/check/ModifiedClass.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
final class ModifiedClass
1010
{
11-
public function __construct(private int $field)
12-
{
11+
public function __construct(
12+
private int $field,
13+
) {
1314
}
1415
}

tests/Console/check/UnmodifiedClass.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
final class UnmodifiedClass
1010
{
11-
public function __construct(private string $field)
12-
{
11+
public function __construct(
12+
private string $field,
13+
) {
1314
}
1415
}

0 commit comments

Comments
 (0)