-
-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Php70] Skip inside Encapsed on ThisCallOnStaticMethodToStaticCallRec…
…tor (#5481) * [Php70] Skip inside Encapsed on ThisCallOnStaticMethodToStaticCallRector * Fixed 🎉 * fix phpstan
- Loading branch information
1 parent
76714b9
commit 7e2495e
Showing
2 changed files
with
39 additions
and
14 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
.../MethodCall/ThisCallOnStaticMethodToStaticCallRector/Fixture/skip_inside_encapsed.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,13 @@ | ||
<?php | ||
|
||
namespace Rector\Tests\Php70\Rector\MethodCall\ThisCallOnStaticMethodToStaticCallRector\Fixture; | ||
|
||
class SkipInsideEncapsed { | ||
public function foo() { | ||
echo "{$this->getLogDate()}"; | ||
} | ||
|
||
private static function getLogDate(): string { | ||
return 'foo'; | ||
} | ||
} |
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