This intention converts Laravel facade alias calls to their fully qualified namespaced facade calls.
Example:
Route::get()
→
\Illuminate\Support\Facades\Route::get()
Helps to make code more explicit and allows future refactoring.