Skip to content

Commit 09bc55a

Browse files
authored
Update facade documenter (#52750)
1 parent 53193a2 commit 09bc55a

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.github/workflows/facades.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,15 @@ jobs:
5050
Illuminate\\Support\\Facades\\Broadcast \
5151
Illuminate\\Support\\Facades\\Bus \
5252
Illuminate\\Support\\Facades\\Cache \
53+
Illuminate\\Support\\Facades\\Concurrency \
5354
Illuminate\\Support\\Facades\\Config \
5455
Illuminate\\Support\\Facades\\Context \
5556
Illuminate\\Support\\Facades\\Cookie \
5657
Illuminate\\Support\\Facades\\Crypt \
5758
Illuminate\\Support\\Facades\\DB \
5859
Illuminate\\Support\\Facades\\Date \
5960
Illuminate\\Support\\Facades\\Event \
61+
Illuminate\\Support\\Facades\\Exceptions \
6062
Illuminate\\Support\\Facades\\File \
6163
Illuminate\\Support\\Facades\\Gate \
6264
Illuminate\\Support\\Facades\\Hash \
@@ -76,6 +78,7 @@ jobs:
7678
Illuminate\\Support\\Facades\\Request \
7779
Illuminate\\Support\\Facades\\Response \
7880
Illuminate\\Support\\Facades\\Route \
81+
Illuminate\\Support\\Facades\\Schedule \
7982
Illuminate\\Support\\Facades\\Schema \
8083
Illuminate\\Support\\Facades\\Session \
8184
Illuminate\\Support\\Facades\\Storage \

src/Illuminate/Support/Facades/Concurrency.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55
use Illuminate\Concurrency\ConcurrencyManager;
66

77
/**
8+
* @method static mixed driver(string|null $name = null)
9+
* @method static \Illuminate\Concurrency\ProcessDriver createProcessDriver(array $config)
10+
* @method static \Illuminate\Concurrency\ForkDriver createForkDriver(array $config)
11+
* @method static \Illuminate\Concurrency\SyncDriver createSyncDriver(array $config)
12+
* @method static string getDefaultInstance()
13+
* @method static void setDefaultInstance(string $name)
14+
* @method static array getInstanceConfig(string $name)
15+
* @method static mixed instance(string|null $name = null)
16+
* @method static \Illuminate\Concurrency\ConcurrencyManager forgetInstance(array|string|null $name = null)
17+
* @method static void purge(string|null $name = null)
18+
* @method static \Illuminate\Concurrency\ConcurrencyManager extend(string $name, \Closure $callback)
19+
* @method static \Illuminate\Concurrency\ConcurrencyManager setApplication(\Illuminate\Contracts\Foundation\Application $app)
20+
* @method static array run(\Closure|array $tasks)
21+
* @method static void background(\Closure|array $tasks)
22+
*
823
* @see \Illuminate\Concurrency\ConcurrencyManager
924
*/
1025
class Concurrency extends Facade

src/Illuminate/Support/Facades/Exceptions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @method static \Illuminate\Foundation\Exceptions\Handler dontReport(array|string $exceptions)
1515
* @method static \Illuminate\Foundation\Exceptions\Handler ignore(array|string $exceptions)
1616
* @method static \Illuminate\Foundation\Exceptions\Handler dontFlash(array|string $attributes)
17-
* @method static \Illuminate\Foundation\Exceptions\Handler level(string $type, void $level)
17+
* @method static \Illuminate\Foundation\Exceptions\Handler level(string $type, string $level)
1818
* @method static void report(\Throwable $e)
1919
* @method static bool shouldReport(\Throwable $e)
2020
* @method static \Illuminate\Foundation\Exceptions\Handler throttleUsing(callable $throttleUsing)
@@ -25,16 +25,16 @@
2525
* @method static \Illuminate\Foundation\Exceptions\Handler shouldRenderJsonWhen(callable $callback)
2626
* @method static \Illuminate\Foundation\Exceptions\Handler dontReportDuplicates()
2727
* @method static \Illuminate\Contracts\Debug\ExceptionHandler handler()
28-
* @method static void assertNothingReported()
2928
* @method static void assertReported(\Closure|string $exception)
3029
* @method static void assertReportedCount(int $count)
3130
* @method static void assertNotReported(\Closure|string $exception)
31+
* @method static void assertNothingReported()
3232
* @method static void renderForConsole(\Symfony\Component\Console\Output\OutputInterface $output, \Throwable $e)
33+
* @method static \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake throwOnReport()
3334
* @method static \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake throwFirstReported()
3435
* @method static \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake setHandler(\Illuminate\Contracts\Debug\ExceptionHandler $handler)
3536
*
3637
* @see \Illuminate\Foundation\Exceptions\Handler
37-
* @see \Illuminate\Contracts\Debug\ExceptionHandler
3838
* @see \Illuminate\Support\Testing\Fakes\ExceptionHandlerFake
3939
*/
4040
class Exceptions extends Facade

0 commit comments

Comments
 (0)