app
assets
public
vendor
alexgarrett
composer
danielstjules
doctrine
hassankhan
illuminate
container
contracts
database
support
Debug
Facades
App.php
Artisan.php
Auth.php
Blade.php
Bus.php
Cache.php
Config.php
Cookie.php
Crypt.php
DB.php
Event.php
Facade.php
File.php
Hash.php
Input.php
Lang.php
Log.php
Mail.php
Password.php
Queue.php
Redirect.php
Redis.php
Request.php
Response.php
Route.php
Schema.php
Session.php
Storage.php
URL.php
Validator.php
View.php
Traits
AggregateServiceProvider.php
Arr.php
ClassLoader.php
Collection.php
Fluent.php
Manager.php
MessageBag.php
NamespacedItemResolver.php
Pluralizer.php
ServiceProvider.php
Str.php
ViewErrorBag.php
composer.json
helpers.php
nesbot
slim
symfony
twig
autoload.php
.gitignore
README.md
composer.json
composer.lock
composer.phar
mode.php
19 lines
273 B
PHP
Executable File
19 lines
273 B
PHP
Executable File
<?php namespace Illuminate\Support\Facades;
|
|
|
|
/**
|
|
* @see \Illuminate\Http\Request
|
|
*/
|
|
class Request extends Facade {
|
|
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'request';
|
|
}
|
|
|
|
}
|