simpleCallableNodeTraverser = $simpleCallableNodeTraverser; $this->nodeNameResolver = $nodeNameResolver; $this->varTagValueNodeRenamer = $varTagValueNodeRenamer; $this->phpDocInfoFactory = $phpDocInfoFactory; $this->betterNodeFinder = $betterNodeFinder; } /** * @param \PhpParser\Node\Stmt\ClassMethod|\PhpParser\Node\Stmt\Function_|\PhpParser\Node\Expr\Closure $functionLike */ public function renameVariableInFunctionLike($functionLike, string $oldName, string $expectedName, ?\PhpParser\Node\Expr\Assign $assign = null) : void { $isRenamingActive = \false; if ($assign === null) { $isRenamingActive = \true; } $this->simpleCallableNodeTraverser->traverseNodesWithCallable((array) $functionLike->stmts, function (\PhpParser\Node $node) use($oldName, $expectedName, $assign, &$isRenamingActive) : ?Variable { if ($assign !== null && $node === $assign) { $isRenamingActive = \true; return null; } if (!$node instanceof \PhpParser\Node\Expr\Variable) { return null; } // skip param names $parent = $node->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::PARENT_NODE); if ($parent instanceof \PhpParser\Node\Param) { return null; } // TODO: Remove in next PR (with above param check?), // TODO: Should be implemented in BreakingVariableRenameGuard::shouldSkipParam() if ($this->isParamInParentFunction($node)) { return null; } if (!$isRenamingActive) { return null; } return $this->renameVariableIfMatchesName($node, $oldName, $expectedName); }); } private function isParamInParentFunction(\PhpParser\Node\Expr\Variable $variable) : bool { $closure = $this->betterNodeFinder->findParentType($variable, \PhpParser\Node\Expr\Closure::class); if (!$closure instanceof \PhpParser\Node\Expr\Closure) { return \false; } $variableName = $this->nodeNameResolver->getName($variable); if ($variableName === null) { return \false; } foreach ($closure->params as $param) { if ($this->nodeNameResolver->isName($param, $variableName)) { return \true; } } return \false; } private function renameVariableIfMatchesName(\PhpParser\Node\Expr\Variable $variable, string $oldName, string $expectedName) : ?\PhpParser\Node\Expr\Variable { if (!$this->nodeNameResolver->isName($variable, $oldName)) { return null; } $variable->name = $expectedName; $variablePhpDocInfo = $this->resolvePhpDocInfo($variable); $this->varTagValueNodeRenamer->renameAssignVarTagVariableName($variablePhpDocInfo, $oldName, $expectedName); return $variable; } /** * Expression doc block has higher priority */ private function resolvePhpDocInfo(\PhpParser\Node\Expr\Variable $variable) : \Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfo { $expression = $variable->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::CURRENT_STATEMENT); if ($expression instanceof \PhpParser\Node) { return $this->phpDocInfoFactory->createFromNodeOrEmpty($expression); } return $this->phpDocInfoFactory->createFromNodeOrEmpty($variable); } }