http://laravel.com/docs/5.1/facades
Facades are listed on the linked page at the bottom. My question is... How do I override these service container bindings?
Example, the Request facade binds Illuminate\Http\Request with the key request. I want to create my own class which inherits from Illuminate\Http\Request and bind it with the request key, instead of the current class. And I can't find which service provider binds this.