Skip to content

Commit d64ca76

Browse files
committed
add fixture to reprint on same line
1 parent 0a94f2a commit d64ca76

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
namespace Rector\Tests\DowngradePhp80\Rector\Class_\DowngradeAttributeToAnnotationRector\Fixture;
4+
5+
use AllowDynamicProperties;
6+
7+
#[AllowDynamicProperties]class ReprintSameLine
8+
{
9+
}
10+
11+
?>
12+
-----
13+
<?php
14+
15+
namespace Rector\Tests\DowngradePhp80\Rector\Class_\DowngradeAttributeToAnnotationRector\Fixture;
16+
17+
use AllowDynamicProperties;
18+
19+
#[AllowDynamicProperties]
20+
class User
21+
{
22+
}
23+
24+
?>

0 commit comments

Comments
 (0)