Code Inspection: 'pow()' call can be replaced with '**' operator
Configure inspections: Settings | Editor | Inspections
Show intention actions: AltEnter
Reports the pow()
calls that can be replaced with the **
operator, which adds no overhead of calling a function.
See Power operator (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.