Skip to content

Commit d77a8f8

Browse files
taylorotwellgithub-actions[bot]
authored andcommitted
Update facade docblocks
1 parent 5e8026f commit d77a8f8

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/Illuminate/Support/Facades/Request.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,19 @@
140140
* @method static bool hasHeader(string $key)
141141
* @method static string|array|null header(string|null $key = null, string|array|null $default = null)
142142
* @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)
143156
* @method static bool exists(string|array $key)
144157
* @method static bool has(string|array $key)
145158
* @method static bool hasAny(string|array $keys)
@@ -150,9 +163,6 @@
150163
* @method static \Illuminate\Http\Request|mixed whenFilled(string $key, callable $callback, callable|null $default = null)
151164
* @method static bool missing(string|array $key)
152165
* @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)
156166
* @method static \Illuminate\Support\Stringable str(string $key, mixed $default = null)
157167
* @method static \Illuminate\Support\Stringable string(string $key, mixed $default = null)
158168
* @method static bool boolean(string|null $key = null, bool $default = false)
@@ -162,18 +172,8 @@
162172
* @method static \BackedEnum|null enum(string $key, string $enumClass)
163173
* @method static \BackedEnum[] enums(string $key, string $enumClass)
164174
* @method static \Illuminate\Support\Collection collect(array|string|null $key = null)
165-
* @method static \Illuminate\Support\Fluent fluent(array|string|null $key = null)
166175
* @method static array only(array|mixed $keys)
167176
* @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)
177177
* @method static void macro(string $name, object|callable $macro)
178178
* @method static void mixin(object $mixin, bool $replace = true)
179179
* @method static bool hasMacro(string $name)

0 commit comments

Comments
 (0)