|
4 | 4 |
|
5 | 5 | /** |
6 | 6 | * A helper file for Laravel, to provide autocomplete information to your IDE |
7 | | - * Generated for Laravel 10.5.1. |
| 7 | + * Generated for Laravel 10.7.1. |
8 | 8 | * |
9 | 9 | * This file should not be included in your code, only analyzed by your IDE! |
10 | 10 | * |
@@ -1762,7 +1762,7 @@ public static function bootstrapWithoutBootingProviders() |
1762 | 1762 | /** |
1763 | 1763 | * Set the Artisan application instance. |
1764 | 1764 | * |
1765 | | - * @param \Illuminate\Console\Application $artisan |
| 1765 | + * @param \Illuminate\Console\Application|null $artisan |
1766 | 1766 | * @return void |
1767 | 1767 | * @static |
1768 | 1768 | */ |
@@ -7834,7 +7834,7 @@ public static function forgetDrivers() |
7834 | 7834 | * @method static \Illuminate\Http\Client\PendingRequest sink(string|resource $to) |
7835 | 7835 | * @method static \Illuminate\Http\Client\PendingRequest timeout(int $seconds) |
7836 | 7836 | * @method static \Illuminate\Http\Client\PendingRequest connectTimeout(int $seconds) |
7837 | | - * @method static \Illuminate\Http\Client\PendingRequest retry(int $times, int $sleepMilliseconds = 0, callable|null $when = null, bool $throw = true) |
| 7837 | + * @method static \Illuminate\Http\Client\PendingRequest retry(int $times, Closure|int $sleepMilliseconds = 0, callable|null $when = null, bool $throw = true) |
7838 | 7838 | * @method static \Illuminate\Http\Client\PendingRequest withOptions(array $options) |
7839 | 7839 | * @method static \Illuminate\Http\Client\PendingRequest withMiddleware(callable $middleware) |
7840 | 7840 | * @method static \Illuminate\Http\Client\PendingRequest beforeSending(callable $callback) |
@@ -9561,6 +9561,8 @@ public static function setDefaultDriver($name) |
9561 | 9561 | * @method static \Illuminate\Contracts\Process\ProcessResult run(array|string|null $command = null, callable|null $output = null) |
9562 | 9562 | * @method static \Illuminate\Process\InvokedProcess start(array|string|null $command = null, callable $output = null) |
9563 | 9563 | * @method static \Illuminate\Process\PendingProcess withFakeHandlers(array $fakeHandlers) |
| 9564 | + * @method static \Illuminate\Process\PendingProcess|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) |
| 9565 | + * @method static \Illuminate\Process\PendingProcess|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) |
9564 | 9566 | * @see \Illuminate\Process\PendingProcess |
9565 | 9567 | * @see \Illuminate\Process\Factory |
9566 | 9568 | */ |
@@ -9745,6 +9747,18 @@ public static function pool($callback) |
9745 | 9747 | { |
9746 | 9748 | /** @var \Illuminate\Process\Factory $instance */ |
9747 | 9749 | return $instance->pool($callback); |
| 9750 | + } |
| 9751 | + /** |
| 9752 | + * Start defining a series of piped processes. |
| 9753 | + * |
| 9754 | + * @param callable $callback |
| 9755 | + * @return \Illuminate\Process\Pipe |
| 9756 | + * @static |
| 9757 | + */ |
| 9758 | + public static function pipe($callback, $output = null) |
| 9759 | + { |
| 9760 | + /** @var \Illuminate\Process\Factory $instance */ |
| 9761 | + return $instance->pipe($callback, $output); |
9748 | 9762 | } |
9749 | 9763 | /** |
9750 | 9764 | * Run a pool of processes and wait for them to finish executing. |
@@ -10398,7 +10412,7 @@ public static function for($name, $callback) |
10398 | 10412 | * Get the given named rate limiter. |
10399 | 10413 | * |
10400 | 10414 | * @param string $name |
10401 | | - * @return \Closure |
| 10415 | + * @return \Closure|null |
10402 | 10416 | * @static |
10403 | 10417 | */ |
10404 | 10418 | public static function limiter($name) |
@@ -18779,6 +18793,26 @@ class Actions { |
18779 | 18793 | /** |
18780 | 18794 | * |
18781 | 18795 | * |
| 18796 | + * @param \Lorisleiva\Actions\class-string<JobDecorator> $jobDecoratorClass |
| 18797 | + * @static |
| 18798 | + */ |
| 18799 | + public static function useJobDecorator($jobDecoratorClass) |
| 18800 | + { |
| 18801 | + return \Lorisleiva\Actions\ActionManager::useJobDecorator($jobDecoratorClass); |
| 18802 | + } |
| 18803 | + /** |
| 18804 | + * |
| 18805 | + * |
| 18806 | + * @param \Lorisleiva\Actions\class-string<JobDecorator&ShouldBeUnique> $uniqueJobDecoratorClass |
| 18807 | + * @static |
| 18808 | + */ |
| 18809 | + public static function useUniqueJobDecorator($uniqueJobDecoratorClass) |
| 18810 | + { |
| 18811 | + return \Lorisleiva\Actions\ActionManager::useUniqueJobDecorator($uniqueJobDecoratorClass); |
| 18812 | + } |
| 18813 | + /** |
| 18814 | + * |
| 18815 | + * |
18782 | 18816 | * @static |
18783 | 18817 | */ |
18784 | 18818 | public static function setDesignPatterns($designPatterns) |
|
0 commit comments