@@ -4767,18 +4767,29 @@ private function processArgs(
4767
4767
}
4768
4768
4769
4769
$ argValue = $ arg ->value ;
4770
- if ($ argValue instanceof Variable && is_string ($ argValue ->name )) {
4771
- if ($ argValue ->name !== 'this ' ) {
4772
- $ paramOutType = $ this ->getParameterOutExtensionsType ($ callLike , $ calleeReflection , $ currentParameter , $ scope );
4773
- if ($ paramOutType !== null ) {
4774
- $ byRefType = $ paramOutType ;
4775
- }
4776
-
4777
- $ nodeCallback (new VariableAssignNode ($ argValue , new TypeExpr ($ byRefType ), false ), $ scope );
4778
- $ scope = $ scope ->assignVariable ($ argValue ->name , $ byRefType , new MixedType ());
4770
+ if (!$ argValue instanceof Variable || $ argValue ->name !== 'this ' ) {
4771
+ $ paramOutType = $ this ->getParameterOutExtensionsType ($ callLike , $ calleeReflection , $ currentParameter , $ scope );
4772
+ if ($ paramOutType !== null ) {
4773
+ $ byRefType = $ paramOutType ;
4779
4774
}
4780
- } else {
4781
- $ scope = $ scope ->invalidateExpression ($ argValue );
4775
+
4776
+ $ result = $ this ->processAssignVar (
4777
+ $ scope ,
4778
+ $ stmt ,
4779
+ $ argValue ,
4780
+ new TypeExpr ($ byRefType ),
4781
+ static function (Node $ node , Scope $ scope ) use ($ nodeCallback ): void {
4782
+ if (!$ node instanceof PropertyAssignNode && !$ node instanceof VariableAssignNode) {
4783
+ return ;
4784
+ }
4785
+
4786
+ $ nodeCallback ($ node , $ scope );
4787
+ },
4788
+ $ context ,
4789
+ static fn (MutatingScope $ scope ): ExpressionResult => new ExpressionResult ($ scope , false , [], []),
4790
+ true ,
4791
+ );
4792
+ $ scope = $ result ->getScope ();
4782
4793
}
4783
4794
} elseif ($ calleeReflection !== null && $ calleeReflection ->hasSideEffects ()->yes ()) {
4784
4795
$ argType = $ scope ->getType ($ arg ->value );
0 commit comments