App.php
2 years ago
Artisan.php
2 years ago
Auth.php
2 years ago
Blade.php
2 years ago
Broadcast.php
2 years ago
Bus.php
2 years ago
Cache.php
2 years ago
Config.php
2 years ago
Cookie.php
2 years ago
Crypt.php
2 years ago
DB.php
2 years ago
Date.php
2 years ago
Event.php
2 years ago
Facade.php
2 years ago
File.php
2 years ago
Gate.php
2 years ago
Hash.php
2 years ago
Http.php
2 years ago
Lang.php
2 years ago
Log.php
2 years ago
Mail.php
2 years ago
Notification.php
2 years ago
ParallelTesting.php
2 years ago
Password.php
2 years ago
Queue.php
2 years ago
RateLimiter.php
2 years ago
Redirect.php
2 years ago
Redis.php
2 years ago
Request.php
2 years ago
Response.php
2 years ago
Route.php
2 years ago
Schema.php
2 years ago
Session.php
2 years ago
Storage.php
2 years ago
URL.php
2 years ago
Validator.php
2 years ago
View.php
2 years ago
Request.php
105 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\Illuminate\Support\Facades; |
| 4 | |
| 5 | /** |
| 6 | * @method static \Closure getRouteResolver() |
| 7 | * @method static \Closure getUserResolver() |
| 8 | * @method static \Illuminate\Http\Request capture() |
| 9 | * @method static \Illuminate\Http\Request createFrom(\Illuminate\Http\Request $from, \Illuminate\Http\Request|null $to = null) |
| 10 | * @method static \Illuminate\Http\Request createFromBase(\Symfony\Component\HttpFoundation\Request $request) |
| 11 | * @method static \Illuminate\Http\Request duplicate(array|null $query = null, array|null $request = null, array|null $attributes = null, array|null $cookies = null, array|null $files = null, array|null $server = null) |
| 12 | * @method static \Illuminate\Http\Request instance() |
| 13 | * @method static \Illuminate\Http\Request merge(array $input) |
| 14 | * @method static \Illuminate\Http\Request replace(array $input) |
| 15 | * @method static \Illuminate\Http\Request setJson(\Symfony\Component\HttpFoundation\ParameterBag $json) |
| 16 | * @method static \Illuminate\Http\Request setRouteResolver(\Closure $callback) |
| 17 | * @method static \Illuminate\Http\Request setUserResolver(\Closure $callback) |
| 18 | * @method static \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null file(string|null $key = null, mixed $default = null) |
| 19 | * @method static \Illuminate\Routing\Route|object|string route(string|null $param = null, string|null $default = null) |
| 20 | * @method static \Illuminate\Session\Store session() |
| 21 | * @method static \Illuminate\Session\Store|null getSession() |
| 22 | * @method static \Symfony\Component\HttpFoundation\ParameterBag|mixed json(string|null $key = null, mixed $default = null) |
| 23 | * @method static array all(array|mixed|null $keys = null) |
| 24 | * @method static array allFiles() |
| 25 | * @method static array except(array|mixed $keys) |
| 26 | * @method static array ips() |
| 27 | * @method static array keys() |
| 28 | * @method static array only(array|mixed $keys) |
| 29 | * @method static array segments() |
| 30 | * @method static array toArray() |
| 31 | * @method static array validate(array $rules, ...$params) |
| 32 | * @method static array validateWithBag(string $errorBag, array $rules, ...$params) |
| 33 | * @method static bool accepts(string|array $contentTypes) |
| 34 | * @method static bool acceptsAnyContentType() |
| 35 | * @method static bool acceptsHtml() |
| 36 | * @method static bool acceptsJson() |
| 37 | * @method static bool ajax() |
| 38 | * @method static bool anyFilled(string|array $key) |
| 39 | * @method static bool exists(string|array $key) |
| 40 | * @method static bool expectsJson() |
| 41 | * @method static bool filled(string|array $key) |
| 42 | * @method static bool fullUrlIs(mixed ...$patterns) |
| 43 | * @method static bool has(string|array $key) |
| 44 | * @method static bool hasAny(string|array $key) |
| 45 | * @method static bool hasCookie(string $key) |
| 46 | * @method static bool hasFile(string $key) |
| 47 | * @method static bool hasHeader(string $key) |
| 48 | * @method static bool hasValidSignature(bool $absolute = true) |
| 49 | * @method static bool is(mixed ...$patterns) |
| 50 | * @method static bool isJson() |
| 51 | * @method static bool matchesType(string $actual, string $type) |
| 52 | * @method static bool offsetExists(string $offset) |
| 53 | * @method static bool pjax() |
| 54 | * @method static bool prefers(string|array $contentTypes) |
| 55 | * @method static bool prefetch() |
| 56 | * @method static bool routeIs(mixed ...$patterns) |
| 57 | * @method static bool secure() |
| 58 | * @method static bool wantsJson() |
| 59 | * @method static mixed filterFiles(mixed $files) |
| 60 | * @method static mixed offsetGet(string $offset) |
| 61 | * @method static mixed user(string|null $guard = null) |
| 62 | * @method static string decodedPath() |
| 63 | * @method static string fingerprint() |
| 64 | * @method static string format($default = 'html') |
| 65 | * @method static string fullUrl() |
| 66 | * @method static string fullUrlWithQuery(array $query) |
| 67 | * @method static string method() |
| 68 | * @method static string path() |
| 69 | * @method static string root() |
| 70 | * @method static string url() |
| 71 | * @method static string userAgent() |
| 72 | * @method static string|array old(string|null $key = null, string|array|null $default = null) |
| 73 | * @method static string|array|null cookie(string|null $key = null, string|array|null $default = null) |
| 74 | * @method static string|array|null header(string|null $key = null, string|array|null $default = null) |
| 75 | * @method static string|array|null input(string|null $key = null, string|array|null $default = null) |
| 76 | * @method static string|array|null post(string|null $key = null, string|array|null $default = null) |
| 77 | * @method static string|array|null query(string|null $key = null, string|array|null $default = null) |
| 78 | * @method static string|array|null server(string|null $key = null, string|array|null $default = null) |
| 79 | * @method static string|null bearerToken() |
| 80 | * @method static string|null ip() |
| 81 | * @method static string|null segment(int $index, string|null $default = null) |
| 82 | * @method static void flash() |
| 83 | * @method static void flashExcept(array|mixed $keys) |
| 84 | * @method static void flashOnly(array|mixed $keys) |
| 85 | * @method static void flush() |
| 86 | * @method static void offsetSet(string $offset, mixed $value) |
| 87 | * @method static void offsetUnset(string $offset) |
| 88 | * @method static void setLaravelSession(\Illuminate\Contracts\Session\Session $session) |
| 89 | * |
| 90 | * @see \Illuminate\Http\Request |
| 91 | * @internal |
| 92 | */ |
| 93 | class Request extends Facade |
| 94 | { |
| 95 | /** |
| 96 | * Get the registered name of the component. |
| 97 | * |
| 98 | * @return string |
| 99 | */ |
| 100 | protected static function getFacadeAccessor() |
| 101 | { |
| 102 | return 'request'; |
| 103 | } |
| 104 | } |
| 105 |