/opt/cpanel/ea-wappspector/vendor/rector/rector/src/NodeManipulator
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/NodeManipulator/StmtsManipulator.php (3155B)
simpleCallableNodeTraverser = $simpleCallableNodeTraverser;
$this->betterNodeFinder = $betterNodeFinder;
$this->nodeComparator = $nodeComparator;
$this->exprUsedInNodeAnalyzer = $exprUsedInNodeAnalyzer;
}
/**
* @param Stmt[] $stmts
*/
public function getUnwrappedLastStmt(array $stmts) : ?Node
{
\end($stmts);
$lastStmtKey = \key($stmts);
\reset($stmts);
$lastStmt = $stmts[$lastStmtKey];
if ($lastStmt instanceof Expression) {
return $lastStmt->expr;
}
return $lastStmt;
}
/**
* @param Stmt[] $stmts
* @return Stmt[]
*/
public function filterOutExistingStmts(ClassMethod $classMethod, array $stmts) : array
{
$this->simpleCallableNodeTraverser->traverseNodesWithCallable((array) $classMethod->stmts, function (Node $node) use(&$stmts) {
foreach ($stmts as $key => $assign) {
if (!$this->nodeComparator->areNodesEqual($node, $assign)) {
continue;
}
unset($stmts[$key]);
}
return null;
});
return $stmts;
}
/**
* @param StmtsAwareInterface|Stmt[] $stmtsAware
*/
public function isVariableUsedInNextStmt($stmtsAware, int $jumpToKey, string $variableName) : bool
{
if ($stmtsAware instanceof StmtsAwareInterface && $stmtsAware->stmts === null) {
return \false;
}
$stmts = \array_slice($stmtsAware instanceof StmtsAwareInterface ? $stmtsAware->stmts : $stmtsAware, $jumpToKey, null, \true);
$variable = new Variable($variableName);
return (bool) $this->betterNodeFinder->findFirst($stmts, function (Node $subNode) use($variable) : bool {
return $this->exprUsedInNodeAnalyzer->isUsed($subNode, $variable);
});
}
}