funcCallStaticCallToMethodCallAnalyzer = $funcCallStaticCallToMethodCallAnalyzer; } public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Turns defined function calls to local method calls.', [new ConfiguredCodeSample(<<<'CODE_SAMPLE' class SomeClass { public function run() { view('...'); } } CODE_SAMPLE , <<<'CODE_SAMPLE' class SomeClass { /** * @var \Namespaced\SomeRenderer */ private $someRenderer; public function __construct(\Namespaced\SomeRenderer $someRenderer) { $this->someRenderer = $someRenderer; } public function run() { $this->someRenderer->view('...'); } } CODE_SAMPLE , [new FuncCallToMethodCall('view', 'Namespaced\\SomeRenderer', 'render')])]); } /** * @return array> */ public function getNodeTypes() : array { return [FuncCall::class]; } /** * @param FuncCall $node */ public function refactor(Node $node) : ?Node { $classLike = $this->betterNodeFinder->findParentType($node, Class_::class); if (!$classLike instanceof Class_) { return null; } $classMethod = $this->betterNodeFinder->findParentType($node, ClassMethod::class); if (!$classMethod instanceof ClassMethod) { return null; } if ($classMethod->isStatic()) { return null; } foreach ($this->funcNameToMethodCallNames as $funcNameToMethodCallName) { if (!$this->isName($node->name, $funcNameToMethodCallName->getOldFuncName())) { continue; } $expr = $this->funcCallStaticCallToMethodCallAnalyzer->matchTypeProvidingExpr($classLike, $classMethod, $funcNameToMethodCallName->getNewObjectType()); return $this->nodeFactory->createMethodCall($expr, $funcNameToMethodCallName->getNewMethodName(), $node->args); } return null; } /** * @param mixed[] $configuration */ public function configure(array $configuration) : void { Assert::allIsAOf($configuration, FuncCallToMethodCall::class); $this->funcNameToMethodCallNames = $configuration; } }