Skip to content

Commit

Permalink
add fixture to validate
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Sep 14, 2023
1 parent ba0291f commit 2b177e8
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

namespace Rector\Tests\CodingStyle\Rector\Property\SplitGroupedPropertiesRector\Fixture;

final class WithDefaultArray
{
public $items, $moreItems = [];
}

?>
-----
<?php

namespace Rector\Tests\CodingStyle\Rector\Property\SplitGroupedPropertiesRector\Fixture;

final class WithDefaultArray
{
public $items;
public $moreItems = [];
}

?>

0 comments on commit 2b177e8

Please sign in to comment.