|
4 | 4 |
|
5 | 5 | /** |
6 | 6 | * A helper file for Laravel, to provide autocomplete information to your IDE |
7 | | - * Generated for Laravel 9.48.0. |
| 7 | + * Generated for Laravel 9.52.0. |
8 | 8 | * |
9 | 9 | * This file should not be included in your code, only analyzed by your IDE! |
10 | 10 | * |
@@ -1577,7 +1577,7 @@ public static function terminate($input, $status) |
1577 | 1577 | $instance->terminate($input, $status); |
1578 | 1578 | } |
1579 | 1579 | /** |
1580 | | - * Register a callback to be invoked when the command lifecyle duration exceeds a given amount of time. |
| 1580 | + * Register a callback to be invoked when the command lifecycle duration exceeds a given amount of time. |
1581 | 1581 | * |
1582 | 1582 | * @param \DateTimeInterface|\Carbon\CarbonInterval|float|int $threshold |
1583 | 1583 | * @param callable $handler |
@@ -2529,7 +2529,7 @@ public static function if($name, $callback) |
2529 | 2529 | * Check the result of a condition. |
2530 | 2530 | * |
2531 | 2531 | * @param string $name |
2532 | | - * @param array $parameters |
| 2532 | + * @param mixed $parameters |
2533 | 2533 | * @return bool |
2534 | 2534 | * @static |
2535 | 2535 | */ |
@@ -3294,7 +3294,7 @@ public static function assertDispatched($command, $callback = null) |
3294 | 3294 | /** |
3295 | 3295 | * Assert if a job was pushed a number of times. |
3296 | 3296 | * |
3297 | | - * @param string $command |
| 3297 | + * @param string|\Closure $command |
3298 | 3298 | * @param int $times |
3299 | 3299 | * @return void |
3300 | 3300 | * @static |
@@ -3344,7 +3344,7 @@ public static function assertDispatchedSync($command, $callback = null) |
3344 | 3344 | /** |
3345 | 3345 | * Assert if a job was pushed synchronously a number of times. |
3346 | 3346 | * |
3347 | | - * @param string $command |
| 3347 | + * @param string|\Closure $command |
3348 | 3348 | * @param int $times |
3349 | 3349 | * @return void |
3350 | 3350 | * @static |
@@ -3383,7 +3383,7 @@ public static function assertDispatchedAfterResponse($command, $callback = null) |
3383 | 3383 | /** |
3384 | 3384 | * Assert if a job was pushed after the response was sent a number of times. |
3385 | 3385 | * |
3386 | | - * @param string $command |
| 3386 | + * @param string|\Closure $command |
3387 | 3387 | * @param int $times |
3388 | 3388 | * @return void |
3389 | 3389 | * @static |
@@ -6567,13 +6567,14 @@ public static function put($path, $contents, $lock = false) |
6567 | 6567 | * |
6568 | 6568 | * @param string $path |
6569 | 6569 | * @param string $content |
| 6570 | + * @param int|null $mode |
6570 | 6571 | * @return void |
6571 | 6572 | * @static |
6572 | 6573 | */ |
6573 | | - public static function replace($path, $content) |
| 6574 | + public static function replace($path, $content, $mode = null) |
6574 | 6575 | { |
6575 | 6576 | /** @var \Illuminate\Filesystem\Filesystem $instance */ |
6576 | | - $instance->replace($path, $content); |
| 6577 | + $instance->replace($path, $content, $mode); |
6577 | 6578 | } |
6578 | 6579 | /** |
6579 | 6580 | * Replace a given string within a given file. |
@@ -7028,7 +7029,7 @@ public static function cleanDirectory($directory) |
7028 | 7029 | * |
7029 | 7030 | * @template TWhenParameter |
7030 | 7031 | * @template TWhenReturnType |
7031 | | - * @param \Illuminate\Filesystem\(\Closure($this): TWhenParameter)|TWhenParameter|null $value |
| 7032 | + * @param \Illuminate\Filesystem\(\Closure($this): TWhenParameter)|TWhenParameter|null $value |
7032 | 7033 | * @param \Illuminate\Filesystem\(callable($this, TWhenParameter): TWhenReturnType)|null $callback |
7033 | 7034 | * @param \Illuminate\Filesystem\(callable($this, TWhenParameter): TWhenReturnType)|null $default |
7034 | 7035 | * @return $this|\Illuminate\Filesystem\TWhenReturnType |
@@ -7628,6 +7629,7 @@ public static function forgetDrivers() |
7628 | 7629 | * @method static \Illuminate\Http\Client\PendingRequest withDigestAuth(string $username, string $password) |
7629 | 7630 | * @method static \Illuminate\Http\Client\PendingRequest withToken(string $token, string $type = 'Bearer') |
7630 | 7631 | * @method static \Illuminate\Http\Client\PendingRequest withUserAgent(string $userAgent) |
| 7632 | + * @method static \Illuminate\Http\Client\PendingRequest withUrlParameters(array $parameters = []) |
7631 | 7633 | * @method static \Illuminate\Http\Client\PendingRequest withCookies(array $cookies, string $domain) |
7632 | 7634 | * @method static \Illuminate\Http\Client\PendingRequest maxRedirects(int $max) |
7633 | 7635 | * @method static \Illuminate\Http\Client\PendingRequest withoutRedirecting() |
@@ -8168,6 +8170,19 @@ public static function setLoaded($loaded) |
8168 | 8170 | { |
8169 | 8171 | /** @var \Illuminate\Translation\Translator $instance */ |
8170 | 8172 | $instance->setLoaded($loaded); |
| 8173 | + } |
| 8174 | + /** |
| 8175 | + * Add a handler to be executed in order to format a given class to a string during translation replacements. |
| 8176 | + * |
| 8177 | + * @param callable|string $class |
| 8178 | + * @param callable|null $handler |
| 8179 | + * @return void |
| 8180 | + * @static |
| 8181 | + */ |
| 8182 | + public static function stringable($class, $handler = null) |
| 8183 | + { |
| 8184 | + /** @var \Illuminate\Translation\Translator $instance */ |
| 8185 | + $instance->stringable($class, $handler); |
8171 | 8186 | } |
8172 | 8187 | /** |
8173 | 8188 | * Set the parsed value of a key. |
@@ -8377,13 +8392,13 @@ public static function extend($driver, $callback) |
8377 | 8392 | * Unset the given channel instance. |
8378 | 8393 | * |
8379 | 8394 | * @param string|null $driver |
8380 | | - * @return \Illuminate\Log\LogManager |
| 8395 | + * @return void |
8381 | 8396 | * @static |
8382 | 8397 | */ |
8383 | 8398 | public static function forgetChannel($driver = null) |
8384 | 8399 | { |
8385 | 8400 | /** @var \Illuminate\Log\LogManager $instance */ |
8386 | | - return $instance->forgetChannel($driver); |
| 8401 | + $instance->forgetChannel($driver); |
8387 | 8402 | } |
8388 | 8403 | /** |
8389 | 8404 | * Get all of the resolved log channels. |
@@ -15570,6 +15585,21 @@ public static function temporaryUrl($path, $expiration, $options = []) |
15570 | 15585 | { |
15571 | 15586 | /** @var \Illuminate\Filesystem\FilesystemAdapter $instance */ |
15572 | 15587 | return $instance->temporaryUrl($path, $expiration, $options); |
| 15588 | + } |
| 15589 | + /** |
| 15590 | + * Get a temporary upload URL for the file at the given path. |
| 15591 | + * |
| 15592 | + * @param string $path |
| 15593 | + * @param \DateTimeInterface $expiration |
| 15594 | + * @param array $options |
| 15595 | + * @return array |
| 15596 | + * @throws \RuntimeException |
| 15597 | + * @static |
| 15598 | + */ |
| 15599 | + public static function temporaryUploadUrl($path, $expiration, $options = []) |
| 15600 | + { |
| 15601 | + /** @var \Illuminate\Filesystem\FilesystemAdapter $instance */ |
| 15602 | + return $instance->temporaryUploadUrl($path, $expiration, $options); |
15573 | 15603 | } |
15574 | 15604 | /** |
15575 | 15605 | * Get an array of all files in a directory. |
@@ -15695,7 +15725,7 @@ public static function buildTemporaryUrlsUsing($callback) |
15695 | 15725 | * |
15696 | 15726 | * @template TWhenParameter |
15697 | 15727 | * @template TWhenReturnType |
15698 | | - * @param \Illuminate\Filesystem\(\Closure($this): TWhenParameter)|TWhenParameter|null $value |
| 15728 | + * @param \Illuminate\Filesystem\(\Closure($this): TWhenParameter)|TWhenParameter|null $value |
15699 | 15729 | * @param \Illuminate\Filesystem\(callable($this, TWhenParameter): TWhenReturnType)|null $callback |
15700 | 15730 | * @param \Illuminate\Filesystem\(callable($this, TWhenParameter): TWhenReturnType)|null $default |
15701 | 15731 | * @return $this|\Illuminate\Filesystem\TWhenReturnType |
@@ -20878,7 +20908,7 @@ public static function cursor() |
20878 | 20908 | } |
20879 | 20909 |
|
20880 | 20910 | /** |
20881 | | - * Get an array with the values of a given column. |
| 20911 | + * Get a collection with the values of a given column. |
20882 | 20912 | * |
20883 | 20913 | * @param string|\Illuminate\Database\Query\Expression $column |
20884 | 20914 | * @param string|null $key |
@@ -21412,7 +21442,7 @@ public static function tap($callback) |
21412 | 21442 | * |
21413 | 21443 | * @template TWhenParameter |
21414 | 21444 | * @template TWhenReturnType |
21415 | | - * @param \Illuminate\Database\Eloquent\(\Closure($this): TWhenParameter)|TWhenParameter|null $value |
| 21445 | + * @param \Illuminate\Database\Eloquent\(\Closure($this): TWhenParameter)|TWhenParameter|null $value |
21416 | 21446 | * @param \Illuminate\Database\Eloquent\(callable($this, TWhenParameter): TWhenReturnType)|null $callback |
21417 | 21447 | * @param \Illuminate\Database\Eloquent\(callable($this, TWhenParameter): TWhenReturnType)|null $default |
21418 | 21448 | * @return $this|\Illuminate\Database\Eloquent\TWhenReturnType |
@@ -22081,6 +22111,45 @@ public static function from($table, $as = null) |
22081 | 22111 | return $instance->from($table, $as); |
22082 | 22112 | } |
22083 | 22113 |
|
| 22114 | + /** |
| 22115 | + * Add an index hint to suggest a query index. |
| 22116 | + * |
| 22117 | + * @param string $index |
| 22118 | + * @return \Illuminate\Database\Query\Builder |
| 22119 | + * @static |
| 22120 | + */ |
| 22121 | + public static function useIndex($index) |
| 22122 | + { |
| 22123 | + /** @var \Illuminate\Database\Query\Builder $instance */ |
| 22124 | + return $instance->useIndex($index); |
| 22125 | + } |
| 22126 | + |
| 22127 | + /** |
| 22128 | + * Add an index hint to force a query index. |
| 22129 | + * |
| 22130 | + * @param string $index |
| 22131 | + * @return \Illuminate\Database\Query\Builder |
| 22132 | + * @static |
| 22133 | + */ |
| 22134 | + public static function forceIndex($index) |
| 22135 | + { |
| 22136 | + /** @var \Illuminate\Database\Query\Builder $instance */ |
| 22137 | + return $instance->forceIndex($index); |
| 22138 | + } |
| 22139 | + |
| 22140 | + /** |
| 22141 | + * Add an index hint to ignore a query index. |
| 22142 | + * |
| 22143 | + * @param string $index |
| 22144 | + * @return \Illuminate\Database\Query\Builder |
| 22145 | + * @static |
| 22146 | + */ |
| 22147 | + public static function ignoreIndex($index) |
| 22148 | + { |
| 22149 | + /** @var \Illuminate\Database\Query\Builder $instance */ |
| 22150 | + return $instance->ignoreIndex($index); |
| 22151 | + } |
| 22152 | + |
22084 | 22153 | /** |
22085 | 22154 | * Add a join clause to the query. |
22086 | 22155 | * |
|
0 commit comments