Skip to content

Commit 9bb7b45

Browse files
Laravel 10.46.0 Shift (alexjustesen#1253)
Co-authored-by: Shift <[email protected]>
1 parent 0ee1811 commit 9bb7b45

File tree

6 files changed

+260
-223
lines changed

6 files changed

+260
-223
lines changed

_ide_helper.php

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/**
77
* 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.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -8976,7 +8976,7 @@
89768976
* @method static \Illuminate\Process\PendingProcess tty(bool $tty = true)
89778977
* @method static \Illuminate\Process\PendingProcess options(array $options)
89788978
* @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)
89808980
* @method static \Illuminate\Process\PendingProcess withFakeHandlers(array $fakeHandlers)
89818981
* @method static \Illuminate\Process\PendingProcess|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
89828982
* @method static \Illuminate\Process\PendingProcess|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
@@ -9895,7 +9895,7 @@
98959895
return $instance->tooManyAttempts($key, $maxAttempts);
98969896
}
98979897
/**
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.
98999899
*
99009900
* @param string $key
99019901
* @param int $decaySeconds
@@ -9905,6 +9905,19 @@
99059905
{
99069906
/** @var \Illuminate\Cache\RateLimiter $instance */
99079907
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);
99089921
}
99099922
/**
99109923
* Get the number of attempts for the given key.
@@ -23054,6 +23067,31 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2305423067
{
2305523068
/** @var \Illuminate\Database\Query\Builder $instance */
2305623069
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);
2305723095
}
2305823096
/**
2305923097
* Add a left join to the query.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
"chrisullyott/php-filesize": "^4.2.1",
1414
"doctrine/dbal": "^3.8.2",
1515
"dragonmantank/cron-expression": "^3.3.3",
16-
"filament/filament": "^3.2.35",
17-
"filament/spatie-laravel-settings-plugin": "^3.2.35",
16+
"filament/filament": "^3.2.40",
17+
"filament/spatie-laravel-settings-plugin": "^3.2.40",
1818
"guzzlehttp/guzzle": "^7.8.1",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.45.1",
22-
"laravel/prompts": "^0.1.15",
21+
"laravel/framework": "^10.46",
22+
"laravel/prompts": "^0.1.16",
2323
"laravel/sanctum": "^3.3.3",
2424
"laravel/tinker": "^2.9.0",
2525
"livewire/livewire": "^3.4.6",
@@ -33,11 +33,11 @@
3333
"barryvdh/laravel-ide-helper": "^2.15.1",
3434
"fakerphp/faker": "^1.23.1",
3535
"laravel/pint": "^1.14.0",
36-
"laravel/sail": "^1.28.0",
36+
"laravel/sail": "^1.28.1",
3737
"laravel/telescope": "^4.17.6",
3838
"mockery/mockery": "^1.6.7",
3939
"nunomaduro/collision": "^7.10.0",
40-
"phpunit/phpunit": "^10.5.10",
40+
"phpunit/phpunit": "^10.5.11",
4141
"spatie/laravel-ignition": "^2.4.2",
4242
"tightenco/duster": "^2.7.3"
4343
},

0 commit comments

Comments
 (0)