I've had this problem for a while, and it's really been bugging me, so I figured I'd ask. In Laravel, how are they able to allow access to facades with two namespaces? If you don't understand what I mean, here's an example. Both of the following statements will work when using the session facade:
use Session;
use Illuminate\Support\Facades\Session;
I've searched all over the web and I still have yet to find an answer for this problem.
Thanks for any help!