Skip to content

Commit

Permalink
use Source class
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed Sep 21, 2023
1 parent 1bd82a7 commit d857343
Showing 1 changed file with 2 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@

namespace Rector\Tests\Renaming\Rector\MethodCall\RenameMethodRector\Fixture;

final class CustomType
{
public function notify(): int
{
return 5;
}
}
use Rector\Tests\Renaming\Rector\MethodCall\RenameMethodRector\Source\CustomType;

final class Caller
{
Expand All @@ -24,13 +18,7 @@ final class Caller

namespace Rector\Tests\Renaming\Rector\MethodCall\RenameMethodRector\Fixture;

final class CustomType
{
public function __invoke(): int
{
return 5;
}
}
use Rector\Tests\Renaming\Rector\MethodCall\RenameMethodRector\Source\CustomType;

final class Caller
{
Expand Down

0 comments on commit d857343

Please sign in to comment.