Skip to content

Commit 474326d

Browse files
committed
wip
1 parent a27fa39 commit 474326d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/reflection/tests/Fixtures/TestClassA.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66

77
final class TestClassA
88
{
9-
public function method(TestEnum $_enum, TestBackedEnum $_backedEnum, string $_other)
9+
public function method(TestEnum $enum, TestBackedEnum $backedEnum, string $other): array
1010
{
11+
return [
12+
$enum,
13+
$backedEnum,
14+
$other,
15+
];
1116
}
1217
}

0 commit comments

Comments
 (0)