Skip to content

Commit 450a04e

Browse files
taylorotwellgithub-actions[bot]
authored andcommitted
Update facade docblocks
1 parent 66d6f8f commit 450a04e

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

src/Illuminate/Support/Facades/App.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
* @method static void scopedIf(\Closure|string $abstract, \Closure|string|null $concrete = null)
114114
* @method static void extend(string $abstract, \Closure $closure)
115115
* @method static mixed instance(string $abstract, mixed $instance)
116-
* @method static void tag(array|string $abstracts, array|mixed $tags)
116+
* @method static void tag(array|string $abstracts, mixed $tags)
117117
* @method static iterable tagged(string $tag)
118118
* @method static void alias(string $abstract, string $alias)
119119
* @method static mixed rebinding(string $abstract, \Closure $callback)

src/Illuminate/Support/Facades/Broadcast.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* @method static \Illuminate\Broadcasting\AnonymousEvent on(\Illuminate\Broadcasting\Channel|array|string $channels)
1313
* @method static \Illuminate\Broadcasting\AnonymousEvent private(string $channel)
1414
* @method static \Illuminate\Broadcasting\AnonymousEvent presence(string $channel)
15-
* @method static \Illuminate\Broadcasting\PendingBroadcast event(mixed|null $event = null)
15+
* @method static \Illuminate\Broadcasting\PendingBroadcast event(mixed $event = null)
1616
* @method static void queue(mixed $event)
1717
* @method static mixed connection(string|null $driver = null)
1818
* @method static mixed driver(string|null $name = null)

src/Illuminate/Support/Facades/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* @method static bool delete(string $key)
3939
* @method static bool deleteMultiple(iterable $keys)
4040
* @method static bool clear()
41-
* @method static \Illuminate\Cache\TaggedCache tags(array|mixed $names)
41+
* @method static \Illuminate\Cache\TaggedCache tags(mixed $names)
4242
* @method static string|null getName()
4343
* @method static bool supportsTags()
4444
* @method static int|null getDefaultCacheTime()

src/Illuminate/Support/Facades/Gate.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
* @method static bool any(iterable|\UnitEnum|string $abilities, mixed $arguments = [])
2020
* @method static bool none(iterable|\UnitEnum|string $abilities, mixed $arguments = [])
2121
* @method static \Illuminate\Auth\Access\Response authorize(\UnitEnum|string $ability, mixed $arguments = [])
22-
* @method static \Illuminate\Auth\Access\Response inspect(\UnitEnum|string $ability, array|mixed $arguments = [])
23-
* @method static mixed raw(string $ability, array|mixed $arguments = [])
22+
* @method static \Illuminate\Auth\Access\Response inspect(\UnitEnum|string $ability, mixed $arguments = [])
23+
* @method static mixed raw(string $ability, mixed $arguments = [])
2424
* @method static mixed getPolicyFor(object|string $class)
2525
* @method static \Illuminate\Auth\Access\Gate guessPolicyNamesUsing(callable $callback)
2626
* @method static mixed resolvePolicy(object|string $class)

src/Illuminate/Support/Facades/Notification.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use Illuminate\Support\Testing\Fakes\NotificationFake;
88

99
/**
10-
* @method static void send(\Illuminate\Support\Collection|array|mixed $notifiables, mixed $notification)
11-
* @method static void sendNow(\Illuminate\Support\Collection|array|mixed $notifiables, mixed $notification, array|null $channels = null)
10+
* @method static void send(\Illuminate\Support\Collection|mixed $notifiables, mixed $notification)
11+
* @method static void sendNow(\Illuminate\Support\Collection|mixed $notifiables, mixed $notification, array|null $channels = null)
1212
* @method static mixed channel(string|null $name = null)
1313
* @method static string getDefaultDriver()
1414
* @method static string deliversVia()

src/Illuminate/Support/Facades/Pipeline.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
/**
66
* @method static \Illuminate\Pipeline\Pipeline send(mixed $passable)
7-
* @method static \Illuminate\Pipeline\Pipeline through(array|mixed $pipes)
8-
* @method static \Illuminate\Pipeline\Pipeline pipe(array|mixed $pipes)
7+
* @method static \Illuminate\Pipeline\Pipeline through(mixed $pipes)
8+
* @method static \Illuminate\Pipeline\Pipeline pipe(mixed $pipes)
99
* @method static \Illuminate\Pipeline\Pipeline via(string $method)
1010
* @method static mixed then(\Closure $destination)
1111
* @method static mixed thenReturn()

src/Illuminate/Support/Facades/Request.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,15 @@
134134
* @method static string format(string $default = 'html')
135135
* @method static string|array|null old(string|null $key = null, \Illuminate\Database\Eloquent\Model|string|array|null $default = null)
136136
* @method static void flash()
137-
* @method static void flashOnly(array|mixed $keys)
138-
* @method static void flashExcept(array|mixed $keys)
137+
* @method static void flashOnly(mixed $keys)
138+
* @method static void flashExcept(mixed $keys)
139139
* @method static void flush()
140140
* @method static string|array|null server(string|null $key = null, string|array|null $default = null)
141141
* @method static bool hasHeader(string $key)
142142
* @method static string|array|null header(string|null $key = null, string|array|null $default = null)
143143
* @method static string|null bearerToken()
144144
* @method static array keys()
145-
* @method static array all(array|mixed|null $keys = null)
145+
* @method static array all(mixed $keys = null)
146146
* @method static mixed input(string|null $key = null, mixed $default = null)
147147
* @method static \Illuminate\Support\Fluent fluent(array|string|null $key = null)
148148
* @method static string|array|null query(string|null $key = null, string|array|null $default = null)
@@ -174,8 +174,8 @@
174174
* @method static \BackedEnum[] enums(string $key, string $enumClass)
175175
* @method static array array(array|string|null $key = null)
176176
* @method static \Illuminate\Support\Collection collect(array|string|null $key = null)
177-
* @method static array only(array|mixed $keys)
178-
* @method static array except(array|mixed $keys)
177+
* @method static array only(mixed $keys)
178+
* @method static array except(mixed $keys)
179179
* @method static \Illuminate\Http\Request|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
180180
* @method static \Illuminate\Http\Request|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
181181
* @method static void macro(string $name, object|callable $macro)

src/Illuminate/Support/Facades/Schedule.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes withoutOverlapping(int $expiresAt = 1440)
2424
* @method static void mergeAttributes(\Illuminate\Console\Scheduling\Event $event)
2525
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes user(string $user)
26-
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes environments(array|mixed $environments)
26+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes environments(mixed $environments)
2727
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes evenInMaintenanceMode()
2828
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes onOneServer()
2929
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes runInBackground()
@@ -71,7 +71,7 @@
7171
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes saturdays()
7272
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes sundays()
7373
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekly()
74-
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weeklyOn(array|mixed $dayOfWeek, string $time = '0:0')
74+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weeklyOn(mixed $dayOfWeek, string $time = '0:0')
7575
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthly()
7676
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthlyOn(int $dayOfMonth = 1, string $time = '0:0')
7777
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceMonthly(int $first = 1, int $second = 16, string $time = '0:0')
@@ -80,7 +80,7 @@
8080
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes quarterlyOn(int $dayOfQuarter = 1, string $time = '0:0')
8181
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearly()
8282
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearlyOn(int $month = 1, int|string $dayOfMonth = 1, string $time = '0:0')
83-
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes days(array|mixed $days)
83+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes days(mixed $days)
8484
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes timezone(\UnitEnum|\DateTimeZone|string $timezone)
8585
*
8686
* @see \Illuminate\Console\Scheduling\Schedule

src/Illuminate/Support/Facades/Session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @method static void flash(string $key, mixed $value = true)
4040
* @method static void now(string $key, mixed $value)
4141
* @method static void reflash()
42-
* @method static void keep(array|mixed $keys = null)
42+
* @method static void keep(mixed $keys = null)
4343
* @method static void flashInput(array $value)
4444
* @method static mixed remove(string $key)
4545
* @method static void forget(string|array $keys)

src/Illuminate/Support/Facades/View.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @method static string renderEach(string $view, array $data, string $iterator, string $empty = 'raw|')
1212
* @method static bool exists(string $view)
1313
* @method static \Illuminate\Contracts\View\Engine getEngineFromPath(string $path)
14-
* @method static mixed share(array|string $key, mixed|null $value = null)
14+
* @method static mixed share(array|string $key, mixed $value = null)
1515
* @method static void incrementRender()
1616
* @method static void decrementRender()
1717
* @method static bool doneRendering()
@@ -43,7 +43,7 @@
4343
* @method static void startComponent(\Illuminate\Contracts\View\View|\Illuminate\Contracts\Support\Htmlable|\Closure|string $view, array $data = [])
4444
* @method static void startComponentFirst(array $names, array $data = [])
4545
* @method static string renderComponent()
46-
* @method static mixed|null getConsumableComponentData(string $key, mixed $default = null)
46+
* @method static mixed getConsumableComponentData(string $key, mixed $default = null)
4747
* @method static void slot(string $name, string|null $content = null, array $attributes = [])
4848
* @method static void endSlot()
4949
* @method static array creator(array|string $views, \Closure|string $callback)

0 commit comments

Comments
 (0)