Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 41 additions & 3 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.45.1.
* Generated for Laravel 10.46.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -8976,7 +8976,7 @@
* @method static \Illuminate\Process\PendingProcess tty(bool $tty = true)
* @method static \Illuminate\Process\PendingProcess options(array $options)
* @method static \Illuminate\Contracts\Process\ProcessResult run(array|string|null $command = null, callable|null $output = null)
* @method static \Illuminate\Process\InvokedProcess start(array|string|null $command = null, callable $output = null)
* @method static \Illuminate\Process\InvokedProcess start(array|string|null $command = null, callable|null $output = null)
* @method static \Illuminate\Process\PendingProcess withFakeHandlers(array $fakeHandlers)
* @method static \Illuminate\Process\PendingProcess|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
* @method static \Illuminate\Process\PendingProcess|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
Expand Down Expand Up @@ -9895,7 +9895,7 @@
return $instance->tooManyAttempts($key, $maxAttempts);
}
/**
* Increment the counter for a given key for a given decay time.
* Increment (by 1) the counter for a given key for a given decay time.
*
* @param string $key
* @param int $decaySeconds
Expand All @@ -9905,6 +9905,19 @@
{
/** @var \Illuminate\Cache\RateLimiter $instance */
return $instance->hit($key, $decaySeconds);
}
/**
* Increment the counter for a given key for a given decay time by a given amount.
*
* @param string $key
* @param int $decaySeconds
* @param int $amount
* @return int
* @static
*/ public static function increment($key, $decaySeconds = 60, $amount = 1)
{
/** @var \Illuminate\Cache\RateLimiter $instance */
return $instance->increment($key, $decaySeconds, $amount);
}
/**
* Get the number of attempts for the given key.
Expand Down Expand Up @@ -23054,6 +23067,31 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->joinSub($query, $as, $first, $operator, $second, $type, $where);
}
/**
* Add a lateral join clause to the query.
*
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder|string $query
* @param string $as
* @param string $type
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function joinLateral($query, $as, $type = 'inner')
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->joinLateral($query, $as, $type);
}
/**
* Add a lateral left join to the query.
*
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder|string $query
* @param string $as
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function leftJoinLateral($query, $as)
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->leftJoinLateral($query, $as);
}
/**
* Add a left join to the query.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"chrisullyott/php-filesize": "^4.2.1",
"doctrine/dbal": "^3.8.2",
"dragonmantank/cron-expression": "^3.3.3",
"filament/filament": "^3.2.35",
"filament/spatie-laravel-settings-plugin": "^3.2.35",
"filament/filament": "^3.2.40",
"filament/spatie-laravel-settings-plugin": "^3.2.40",
"guzzlehttp/guzzle": "^7.8.1",
"influxdata/influxdb-client-php": "^3.4",
"laravel-notification-channels/telegram": "^4.0",
"laravel/framework": "^10.45.1",
"laravel/prompts": "^0.1.15",
"laravel/framework": "^10.46",
"laravel/prompts": "^0.1.16",
"laravel/sanctum": "^3.3.3",
"laravel/tinker": "^2.9.0",
"livewire/livewire": "^3.4.6",
Expand All @@ -33,11 +33,11 @@
"barryvdh/laravel-ide-helper": "^2.15.1",
"fakerphp/faker": "^1.23.1",
"laravel/pint": "^1.14.0",
"laravel/sail": "^1.28.0",
"laravel/sail": "^1.28.1",
"laravel/telescope": "^4.17.6",
"mockery/mockery": "^1.6.7",
"nunomaduro/collision": "^7.10.0",
"phpunit/phpunit": "^10.5.10",
"phpunit/phpunit": "^10.5.11",
"spatie/laravel-ignition": "^2.4.2",
"tightenco/duster": "^2.7.3"
},
Expand Down
Loading