MartynasJanu commented on issue #6714:
URL: https://github.com/apache/netbeans/issues/6714#issuecomment-1837707417

   Don't You mean this is the expected? Or am I understanding this incorrectly..
   
   
   ```php
   class F {
   
       public array $x = [];
       public array $y = [];
   
       public function a() {
           return array_merge(
               $this->x,
               $this->y,
           );
       }
   
       public function b() {
           return array_merge(
               $this->nonExistant($anyArgument),
               $this->y,
           );
       }
   }
   
   array_merge(
       $x,
       $y,
   );
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to