website/vendor/illuminate/support/Facades/Request.php

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';
}
}