Bharat Khatri
Bharat Khatri

Reputation: 1407

Auto suggestion icon in PhpStorm

enter image description here

Does anyone know what the icon ">>" (two blue arrows) stands for?

I couldn't find the icon listed on Symbols Reference - JetBrains

Upvotes: 2

Views: 147

Answers (1)

ShaunUK
ShaunUK

Reputation: 917

The two blue arrows tell you that the Class (or interface etc.) has already been imported for use. So in this case you have use statements for Illuminate\Http\Request and App\Http\Requests and App\Http\Controllers\Controller so they are marked with the double arrow symbol. The other classes in the autocomplete list have not been added with a use statement.

Upvotes: 3

Related Questions