8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 051abc6 commit 7a42ac4Copy full SHA for 7a42ac4
rules-tests/Naming/Rector/ClassMethod/RenameParamToMatchTypeRector/Fixture/skip_used.php.inc
@@ -4,10 +4,10 @@ namespace Rector\Tests\Naming\Rector\ClassMethod\RenameParamToMatchTypeRector\Fi
4
5
final class SkipUsed
6
{
7
- public function run(Node $and)
+ public function run(Node $nd)
8
9
- $this->betterNodeFinder->find($and->stmts, function (Node $node) use ($and) {
10
- return $and !== $node;
+ $this->betterNodeFinder->find($nd->stmts, function (Node $node) use ($nd) {
+ return $nd !== $node;
11
});
12
}
13
0 commit comments