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|\PhpParser\Node\Expr\ArrowFunction $functionLike */ public function renameVariableInFunctionLike($functionLike, string $oldName, string $expectedName, ?Assign $assign = null) : void { $isRenamingActive = \false; if (!$assign instanceof Assign) { $isRenamingActive = \true; } $this->simpleCallableNodeTraverser->traverseNodesWithCallable((array) $functionLike->getStmts(), function (Node $node) use($oldName, $expectedName, $assign, &$isRenamingActive) : ?Variable { if ($assign instanceof Assign && $node === $assign) { $isRenamingActive = \true; return null; } if (!$node instanceof Variable) { return null; } // skip param names $parentNode = $node->getAttribute(AttributeKey::PARENT_NODE); if ($parentNode instanceof 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(Variable $variable) : bool { $closure = $this->betterNodeFinder->findParentType($variable, Closure::class); if (!$closure instanceof 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(Variable $variable, string $oldName, string $expectedName) : ?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(Variable $variable) : PhpDocInfo { $currentStmt = $this->betterNodeFinder->resolveCurrentStatement($variable); if ($currentStmt instanceof Node) { return $this->phpDocInfoFactory->createFromNodeOrEmpty($currentStmt); } return $this->phpDocInfoFactory->createFromNodeOrEmpty($variable); } }