Skip to content

Commit

Permalink
fix this to static
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jul 20, 2023
1 parent f901f27 commit 04d257d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Rector\Tests\DowngradePhp80\Rector\ClassMethod\DowngradeStaticTypeDecl
trait AlsoTrait
{
/**
* @return $this
* @return static
*/
public function getAnything()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Rector\Tests\DowngradePhp80\Rector\ClassMethod\DowngradeStaticTypeDecl
class DocblockExists {
/**
* This property is the best one
* @return $this
* @return static
*/
public function getAnything()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Rector\Tests\DowngradePhp80\Rector\ClassMethod\DowngradeStaticTypeDecl
class Fixture
{
/**
* @return $this
* @return static
*/
public function getAnything()
{
Expand Down

0 comments on commit 04d257d

Please sign in to comment.