binaryOpManipulator = $binaryOpManipulator; $this->nodeNameResolver = $nodeNameResolver; } public function processBooleanOr(\PhpParser\Node\Expr\BinaryOp\BooleanOr $booleanOr, string $type, string $newMethodName) : ?\PhpParser\Node\Expr\FuncCall { $twoNodeMatch = $this->binaryOpManipulator->matchFirstAndSecondConditionNode($booleanOr, \PhpParser\Node\Expr\Instanceof_::class, \PhpParser\Node\Expr\FuncCall::class); if (!$twoNodeMatch instanceof \Rector\Php71\ValueObject\TwoNodeMatch) { return null; } /** @var Instanceof_ $instanceOf */ $instanceOf = $twoNodeMatch->getFirstExpr(); /** @var FuncCall $funcCall */ $funcCall = $twoNodeMatch->getSecondExpr(); $instanceOfClass = $instanceOf->class; if ($instanceOfClass instanceof \PhpParser\Node\Expr) { return null; } if ((string) $instanceOfClass !== $type) { return null; } if (!$this->nodeNameResolver->isName($funcCall, 'is_array')) { return null; } // both use same var if (!$funcCall->args[0]->value instanceof \PhpParser\Node\Expr\Variable) { return null; } /** @var Variable $firstVarNode */ $firstVarNode = $funcCall->args[0]->value; if (!$instanceOf->expr instanceof \PhpParser\Node\Expr\Variable) { return null; } /** @var Variable $secondVarNode */ $secondVarNode = $instanceOf->expr; // are they same variables if ($firstVarNode->name !== $secondVarNode->name) { return null; } return new \PhpParser\Node\Expr\FuncCall(new \PhpParser\Node\Name($newMethodName), [new \PhpParser\Node\Arg($firstVarNode)]); } }