Code Inspection: 'match' can be replaced with 'switch' statement
Reports the match
expressions that can be replaced with switch
statements.
Note that match
expressions use strict type comparison, while switch
statements rely on loose comparison. As a result, the expression semantics may change after replacement.
See match (php.net) and switch (php.net) for details.
Suppress an inspection in the editor
Position the caret at the highlighted line and press Alt+Enter or click .
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.
Last modified: 16 May 2022