Code Inspection: 'array_push()' with single element
Configure inspections: Settings | Editor | Inspections
Show intention actions: AltEnter
Reports the array_push()
calls that are used to add a single element to an array. In such cases, it is recommended to use $array[] =
instead, which adds no overhead of calling a function.
See array_push (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.