Code Inspection: Unnecessary fully qualified name
Configure inspections: Settings | Editor | Inspections
Show intention actions: AltEnter
Reports the usages of fully qualified class names, which can be shortened without adding the use
statement.
In the following example, the usage of the \App\Model\Table
fully qualified name is unnecessary. Removing it improves code readability.
Before
use App\Model\Table;new \App\Model\Table();
After
use App\Model\Table;new Table();
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.