Code Inspection: Unnecessary pass-by-ref
Configure inspections: Settings | Editor | Inspections
Show intention actions: AltEnter
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.
Place the caret at the highlighted line and press AltEnter or click
.
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.