|
140 | 140 | * @method static bool hasHeader(string $key)
|
141 | 141 | * @method static string|array|null header(string|null $key = null, string|array|null $default = null)
|
142 | 142 | * @method static string|null bearerToken()
|
| 143 | + * @method static array keys() |
| 144 | + * @method static array all(array|mixed|null $keys = null) |
| 145 | + * @method static mixed input(string|null $key = null, mixed $default = null) |
| 146 | + * @method static \Illuminate\Support\Fluent fluent(array|string|null $key = null) |
| 147 | + * @method static string|array|null query(string|null $key = null, string|array|null $default = null) |
| 148 | + * @method static string|array|null post(string|null $key = null, string|array|null $default = null) |
| 149 | + * @method static bool hasCookie(string $key) |
| 150 | + * @method static string|array|null cookie(string|null $key = null, string|array|null $default = null) |
| 151 | + * @method static array allFiles() |
| 152 | + * @method static bool hasFile(string $key) |
| 153 | + * @method static \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null file(string|null $key = null, mixed $default = null) |
| 154 | + * @method static \Illuminate\Http\Request dump(mixed $keys = []) |
| 155 | + * @method static never dd(mixed ...$args) |
143 | 156 | * @method static bool exists(string|array $key)
|
144 | 157 | * @method static bool has(string|array $key)
|
145 | 158 | * @method static bool hasAny(string|array $keys)
|
|
150 | 163 | * @method static \Illuminate\Http\Request|mixed whenFilled(string $key, callable $callback, callable|null $default = null)
|
151 | 164 | * @method static bool missing(string|array $key)
|
152 | 165 | * @method static \Illuminate\Http\Request|mixed whenMissing(string $key, callable $callback, callable|null $default = null)
|
153 |
| - * @method static array keys() |
154 |
| - * @method static array all(array|mixed|null $keys = null) |
155 |
| - * @method static mixed input(string|null $key = null, mixed $default = null) |
156 | 166 | * @method static \Illuminate\Support\Stringable str(string $key, mixed $default = null)
|
157 | 167 | * @method static \Illuminate\Support\Stringable string(string $key, mixed $default = null)
|
158 | 168 | * @method static bool boolean(string|null $key = null, bool $default = false)
|
|
162 | 172 | * @method static \BackedEnum|null enum(string $key, string $enumClass)
|
163 | 173 | * @method static \BackedEnum[] enums(string $key, string $enumClass)
|
164 | 174 | * @method static \Illuminate\Support\Collection collect(array|string|null $key = null)
|
165 |
| - * @method static \Illuminate\Support\Fluent fluent(array|string|null $key = null) |
166 | 175 | * @method static array only(array|mixed $keys)
|
167 | 176 | * @method static array except(array|mixed $keys)
|
168 |
| - * @method static string|array|null query(string|null $key = null, string|array|null $default = null) |
169 |
| - * @method static string|array|null post(string|null $key = null, string|array|null $default = null) |
170 |
| - * @method static bool hasCookie(string $key) |
171 |
| - * @method static string|array|null cookie(string|null $key = null, string|array|null $default = null) |
172 |
| - * @method static array allFiles() |
173 |
| - * @method static bool hasFile(string $key) |
174 |
| - * @method static \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null file(string|null $key = null, mixed $default = null) |
175 |
| - * @method static \Illuminate\Http\Request dump(mixed $keys = []) |
176 |
| - * @method static never dd(mixed ...$args) |
177 | 177 | * @method static void macro(string $name, object|callable $macro)
|
178 | 178 | * @method static void mixin(object $mixin, bool $replace = true)
|
179 | 179 | * @method static bool hasMacro(string $name)
|
|
0 commit comments