-
-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Privatization] Skip magic method on PrivatizeFinalClassMethodRector (#…
…6734) * [Privatization] Skip magic method on PrivatizeFinalClassMethodRector * [Privatization] Skip magic method on PrivatizeFinalClassMethodRector * [ci-review] Rector Rectify --------- Co-authored-by: GitHub Action <[email protected]>
- Loading branch information
1 parent
e1841ae
commit 449e5ff
Showing
4 changed files
with
37 additions
and
15 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
...ization/Rector/ClassMethod/PrivatizeFinalClassMethodRector/Fixture/skip_construct.php.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Rector\Tests\Privatization\Rector\ClassMethod\PrivatizeFinalClassMethodRector\Fixture; | ||
|
||
/** | ||
* both classes need to be in same fixture on purpose to reproduce the issue | ||
*/ | ||
readonly abstract class A { | ||
public static function a():A { | ||
return new B(); | ||
} | ||
} | ||
|
||
final readonly class B extends A { | ||
protected function __construct() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters