Skip to content

Commit 683ce26

Browse files
committed
keep doc
1 parent 0ce53e0 commit 683ce26

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
3+
namespace Rector\Tests\DowngradePhp80\Rector\FunctionLike\DowngradeUnionTypeDeclarationRector\Fixture;
4+
5+
final class MatchReturnDocWithNative
6+
{
7+
/**
8+
* @return \stdClass[]|null|int
9+
*/
10+
public function run($value): int|null|array
11+
{
12+
}
13+
}
14+
15+
?>
16+
-----
17+
<?php
18+
19+
namespace Rector\Tests\DowngradePhp80\Rector\FunctionLike\DowngradeUnionTypeDeclarationRector\Fixture;
20+
21+
final class MatchReturnDocWithNative
22+
{
23+
/**
24+
* @return \stdClass[]|null|int
25+
*/
26+
public function run($value)
27+
{
28+
}
29+
}
30+
31+
?>

0 commit comments

Comments
 (0)