PhpStorm
 
Get PhpStorm
You are viewing the documentation for an earlier version of PhpStorm.

Code Inspection: Unnecessary pass-by-ref

Last modified: 16 May 2022

Reports the variables that are passed by reference to a function/method but are not modified in the function/method body. In such cases, the & in parameter's declaration can be safely removed.

See Passing by Reference (php.net) for details.