lancepioch / tree

Connect your Github Repository to your Forge Server and Tree automatically deploys any new pull requests for you
MIT License
11 stars 3 forks source link

Remove references to global namespaced facades #10

Closed lancepioch closed 6 years ago

lancepioch commented 6 years ago

For example, you're referencing \DB or importing use DB. Instead import Illuminate\Support\Facades\DB and reference DB.

While global references are allowed through aliases, you should import the facade explicitly. This can improve clarity not only for developers, but static analysis used by your IDE.