PhpStorm 2020.3 Help

Code Inspection: Unnecessary fully qualified name

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.

use App\Model\Table; new \App\Model\Table();
use App\Model\Table; new Table();

Suppress an inspection in the editor

  1. Position the caret at the highlighted line and press Alt+Enter or click the Intention action icon.

  2. Click the arrow next to the inspection you want to suppress and select the necessary suppress action.

Last modified: 08 March 2021