Mit Rector versuche ich Folgendes umzuwandeln.
$integer = some_made_up_function_call($parm1, $parm2);
Hier eingeben:
$integer = $parm1->made_up_method_call($parm2)['hard_coded_index'];
Meine Frage ist die letzte ['hard_coded_index']
. Ich weiß nicht, wie ich das machen soll. Was ich bisher habe ist.
public function refactor(Node $node): ?Node { if (! $this->isName($node->name, 'some_made_up_function_call')) { return null; } $firstParameter = new Node\Expr\Variable($node->args[0]->value->name); return new Node\Expr\MethodCall( $firstParameter, 'made_up_method_call', [$node->args[1]] ); }
好吧,我明白了...