Skip to content

Commit df3343e

Browse files
taylorotwellgithub-actions[bot]
authored andcommitted
Update facade docblocks
1 parent b59cb3b commit df3343e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Illuminate/Support/Facades/Bus.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
* @method static mixed dispatchSync(mixed $command, mixed $handler = null)
1313
* @method static mixed dispatchNow(mixed $command, mixed $handler = null)
1414
* @method static \Illuminate\Bus\Batch|null findBatch(string $batchId)
15-
* @method static \Illuminate\Bus\PendingBatch batch(\Illuminate\Support\Collection|array|mixed $jobs)
15+
* @method static \Illuminate\Bus\PendingBatch batch(\Illuminate\Support\Collection|mixed $jobs)
1616
* @method static \Illuminate\Foundation\Bus\PendingChain chain(\Illuminate\Support\Collection|array $jobs)
1717
* @method static bool hasCommandHandler(mixed $command)
18-
* @method static bool|mixed getCommandHandler(mixed $command)
18+
* @method static mixed getCommandHandler(mixed $command)
1919
* @method static mixed dispatchToQueue(mixed $command)
2020
* @method static void dispatchAfterResponse(mixed $command, mixed $handler = null)
2121
* @method static \Illuminate\Bus\Dispatcher pipeThrough(array $pipes)

src/Illuminate/Support/Facades/Gate.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
* @method static \Illuminate\Auth\Access\Gate policy(string $class, string $policy)
1414
* @method static \Illuminate\Auth\Access\Gate before(callable $callback)
1515
* @method static \Illuminate\Auth\Access\Gate after(callable $callback)
16-
* @method static bool allows(iterable|\UnitEnum|string $ability, array|mixed $arguments = [])
17-
* @method static bool denies(iterable|\UnitEnum|string $ability, array|mixed $arguments = [])
18-
* @method static bool check(iterable|\UnitEnum|string $abilities, array|mixed $arguments = [])
19-
* @method static bool any(iterable|\UnitEnum|string $abilities, array|mixed $arguments = [])
20-
* @method static bool none(iterable|\UnitEnum|string $abilities, array|mixed $arguments = [])
21-
* @method static \Illuminate\Auth\Access\Response authorize(\UnitEnum|string $ability, array|mixed $arguments = [])
16+
* @method static bool allows(iterable|\UnitEnum|string $ability, mixed $arguments = [])
17+
* @method static bool denies(iterable|\UnitEnum|string $ability, mixed $arguments = [])
18+
* @method static bool check(iterable|\UnitEnum|string $abilities, mixed $arguments = [])
19+
* @method static bool any(iterable|\UnitEnum|string $abilities, mixed $arguments = [])
20+
* @method static bool none(iterable|\UnitEnum|string $abilities, mixed $arguments = [])
21+
* @method static \Illuminate\Auth\Access\Response authorize(\UnitEnum|string $ability, mixed $arguments = [])
2222
* @method static \Illuminate\Auth\Access\Response inspect(\UnitEnum|string $ability, array|mixed $arguments = [])
2323
* @method static mixed raw(string $ability, array|mixed $arguments = [])
2424
* @method static mixed getPolicyFor(object|string $class)

0 commit comments

Comments
 (0)