|
5 | 5 |
|
6 | 6 | /** |
7 | 7 | * A helper file for Laravel, to provide autocomplete information to your IDE |
8 | | - * Generated for Laravel 10.45.1. |
| 8 | + * Generated for Laravel 10.46.0. |
9 | 9 | * |
10 | 10 | * This file should not be included in your code, only analyzed by your IDE! |
11 | 11 | * |
|
8976 | 8976 | * @method static \Illuminate\Process\PendingProcess tty(bool $tty = true) |
8977 | 8977 | * @method static \Illuminate\Process\PendingProcess options(array $options) |
8978 | 8978 | * @method static \Illuminate\Contracts\Process\ProcessResult run(array|string|null $command = null, callable|null $output = null) |
8979 | | - * @method static \Illuminate\Process\InvokedProcess start(array|string|null $command = null, callable $output = null) |
| 8979 | + * @method static \Illuminate\Process\InvokedProcess start(array|string|null $command = null, callable|null $output = null) |
8980 | 8980 | * @method static \Illuminate\Process\PendingProcess withFakeHandlers(array $fakeHandlers) |
8981 | 8981 | * @method static \Illuminate\Process\PendingProcess|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) |
8982 | 8982 | * @method static \Illuminate\Process\PendingProcess|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null) |
|
9895 | 9895 | return $instance->tooManyAttempts($key, $maxAttempts); |
9896 | 9896 | } |
9897 | 9897 | /** |
9898 | | - * Increment the counter for a given key for a given decay time. |
| 9898 | + * Increment (by 1) the counter for a given key for a given decay time. |
9899 | 9899 | * |
9900 | 9900 | * @param string $key |
9901 | 9901 | * @param int $decaySeconds |
|
9905 | 9905 | { |
9906 | 9906 | /** @var \Illuminate\Cache\RateLimiter $instance */ |
9907 | 9907 | return $instance->hit($key, $decaySeconds); |
| 9908 | + } |
| 9909 | + /** |
| 9910 | + * Increment the counter for a given key for a given decay time by a given amount. |
| 9911 | + * |
| 9912 | + * @param string $key |
| 9913 | + * @param int $decaySeconds |
| 9914 | + * @param int $amount |
| 9915 | + * @return int |
| 9916 | + * @static |
| 9917 | + */ public static function increment($key, $decaySeconds = 60, $amount = 1) |
| 9918 | + { |
| 9919 | + /** @var \Illuminate\Cache\RateLimiter $instance */ |
| 9920 | + return $instance->increment($key, $decaySeconds, $amount); |
9908 | 9921 | } |
9909 | 9922 | /** |
9910 | 9923 | * Get the number of attempts for the given key. |
@@ -23054,6 +23067,31 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model { |
23054 | 23067 | { |
23055 | 23068 | /** @var \Illuminate\Database\Query\Builder $instance */ |
23056 | 23069 | return $instance->joinSub($query, $as, $first, $operator, $second, $type, $where); |
| 23070 | + } |
| 23071 | + /** |
| 23072 | + * Add a lateral join clause to the query. |
| 23073 | + * |
| 23074 | + * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder|string $query |
| 23075 | + * @param string $as |
| 23076 | + * @param string $type |
| 23077 | + * @return \Illuminate\Database\Query\Builder |
| 23078 | + * @static |
| 23079 | + */ public static function joinLateral($query, $as, $type = 'inner') |
| 23080 | + { |
| 23081 | + /** @var \Illuminate\Database\Query\Builder $instance */ |
| 23082 | + return $instance->joinLateral($query, $as, $type); |
| 23083 | + } |
| 23084 | + /** |
| 23085 | + * Add a lateral left join to the query. |
| 23086 | + * |
| 23087 | + * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder|string $query |
| 23088 | + * @param string $as |
| 23089 | + * @return \Illuminate\Database\Query\Builder |
| 23090 | + * @static |
| 23091 | + */ public static function leftJoinLateral($query, $as) |
| 23092 | + { |
| 23093 | + /** @var \Illuminate\Database\Query\Builder $instance */ |
| 23094 | + return $instance->leftJoinLateral($query, $as); |
23057 | 23095 | } |
23058 | 23096 | /** |
23059 | 23097 | * Add a left join to the query. |
|
0 commit comments