File tree Expand file tree Collapse file tree 1 file changed +12
-14
lines changed Expand file tree Collapse file tree 1 file changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -4578,20 +4578,18 @@ private function processArgs(
4578
4578
4579
4579
$ lookForUnset = false ;
4580
4580
if ($ assignByReference ) {
4581
- if ($ arg ->value instanceof Variable) {
4582
- $ isBuiltin = false ;
4583
- if ($ calleeReflection instanceof FunctionReflection && $ calleeReflection ->isBuiltin ()) {
4584
- $ isBuiltin = true ;
4585
- } elseif ($ calleeReflection instanceof ExtendedMethodReflection && $ calleeReflection ->getDeclaringClass ()->isBuiltin ()) {
4586
- $ isBuiltin = true ;
4587
- }
4588
- if (
4589
- $ isBuiltin
4590
- || ($ parameterNativeType === null || !$ parameterNativeType ->isNull ()->no ())
4591
- ) {
4592
- $ scope = $ this ->lookForSetAllowedUndefinedExpressions ($ scope , $ arg ->value );
4593
- $ lookForUnset = true ;
4594
- }
4581
+ $ isBuiltin = false ;
4582
+ if ($ calleeReflection instanceof FunctionReflection && $ calleeReflection ->isBuiltin ()) {
4583
+ $ isBuiltin = true ;
4584
+ } elseif ($ calleeReflection instanceof ExtendedMethodReflection && $ calleeReflection ->getDeclaringClass ()->isBuiltin ()) {
4585
+ $ isBuiltin = true ;
4586
+ }
4587
+ if (
4588
+ $ isBuiltin
4589
+ || ($ parameterNativeType === null || !$ parameterNativeType ->isNull ()->no ())
4590
+ ) {
4591
+ $ scope = $ this ->lookForSetAllowedUndefinedExpressions ($ scope , $ arg ->value );
4592
+ $ lookForUnset = true ;
4595
4593
}
4596
4594
}
4597
4595
You can’t perform that action at this time.
0 commit comments