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
140 changes: 134 additions & 6 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 11.4.0.
* Generated for Laravel 11.7.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -2889,6 +2889,33 @@
{
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
return $instance->socket($request);
}
/**
* Begin sending an anonymous broadcast to the given channels.
*
* @static
*/ public static function on($channels)
{
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
return $instance->on($channels);
}
/**
* Begin sending an anonymous broadcast to the given private channels.
*
* @static
*/ public static function private($channel)
{
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
return $instance->private($channel);
}
/**
* Begin sending an anonymous broadcast to the given presence channels.
*
* @static
*/ public static function presence($channel)
{
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
return $instance->presence($channel);
}
/**
* Begin broadcasting an event.
Expand Down Expand Up @@ -10497,6 +10524,19 @@
{
/** @var \Illuminate\Cache\RateLimiter $instance */
return $instance->increment($key, $decaySeconds, $amount);
}
/**
* Decrement 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 decrement($key, $decaySeconds = 60, $amount = 1)
{
/** @var \Illuminate\Cache\RateLimiter $instance */
return $instance->decrement($key, $decaySeconds, $amount);
}
/**
* Get the number of attempts for the given key.
Expand Down Expand Up @@ -11103,7 +11143,7 @@
return $instance->mergeIfMissing($input);
}
/**
* Replace the input for the current request.
* Replace the input values for the current request.
*
* @param array $input
* @return \Illuminate\Http\Request
Expand Down Expand Up @@ -16209,6 +16249,20 @@
{
/** @var \Illuminate\Routing\UrlGenerator $instance */
return $instance->to($path, $extra, $secure);
}
/**
* Generate an absolute URL with the given query parameters.
*
* @param string $path
* @param array $query
* @param mixed $extra
* @param bool|null $secure
* @return string
* @static
*/ public static function query($path, $query = [], $extra = [], $secure = null)
{
/** @var \Illuminate\Routing\UrlGenerator $instance */
return $instance->query($path, $query, $extra, $secure);
}
/**
* Generate a secure, absolute URL to the given path.
Expand Down Expand Up @@ -18238,6 +18292,15 @@
{
/** @var \Livewire\LivewireManager $instance */
return $instance->withHeaders($headers);
}
/**
*
*
* @static
*/ public static function withoutLazyLoading()
{
/** @var \Livewire\LivewireManager $instance */
return $instance->withoutLazyLoading();
}
/**
*
Expand Down Expand Up @@ -18784,10 +18847,10 @@
*
*
* @static
*/ public static function registerErrorHandler()
*/ public static function registerErrorHandler($errorLevels = null)
{
/** @var \Spatie\FlareClient\Flare $instance */
return $instance->registerErrorHandler();
return $instance->registerErrorHandler($errorLevels);
}
/**
*
Expand Down Expand Up @@ -18855,10 +18918,19 @@
*
*
* @static
*/ public static function report($throwable, $callback = null, $report = null)
*/ public static function report($throwable, $callback = null, $report = null, $handled = null)
{
/** @var \Spatie\FlareClient\Flare $instance */
return $instance->report($throwable, $callback, $report);
return $instance->report($throwable, $callback, $report, $handled);
}
/**
*
*
* @static
*/ public static function reportHandled($throwable)
{
/** @var \Spatie\FlareClient\Flare $instance */
return $instance->reportHandled($throwable);
}
/**
*
Expand Down Expand Up @@ -24594,6 +24666,57 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->orWhereJsonDoesntContain($column, $value);
}
/**
* Add a "where JSON overlaps" clause to the query.
*
* @param string $column
* @param mixed $value
* @param string $boolean
* @param bool $not
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function whereJsonOverlaps($column, $value, $boolean = 'and', $not = false)
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->whereJsonOverlaps($column, $value, $boolean, $not);
}
/**
* Add an "or where JSON overlaps" clause to the query.
*
* @param string $column
* @param mixed $value
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function orWhereJsonOverlaps($column, $value)
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->orWhereJsonOverlaps($column, $value);
}
/**
* Add a "where JSON not overlap" clause to the query.
*
* @param string $column
* @param mixed $value
* @param string $boolean
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function whereJsonDoesntOverlap($column, $value, $boolean = 'and')
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->whereJsonDoesntOverlap($column, $value, $boolean);
}
/**
* Add an "or where JSON not overlap" clause to the query.
*
* @param string $column
* @param mixed $value
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function orWhereJsonDoesntOverlap($column, $value)
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->orWhereJsonDoesntOverlap($column, $value);
}
/**
* Add a clause that determines if a JSON path exists to the query.
Expand Down Expand Up @@ -25738,6 +25861,11 @@ class Flare extends \Spatie\LaravelIgnition\Facades\Flare {}
}


namespace Facades\Livewire\Features\SupportFileUploads {
/**
* @mixin \Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl */
class GenerateSignedUploadUrl extends \Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl {}
}



18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"awcodes/filament-versions": "^2.0.1",
"chrisullyott/php-filesize": "^4.2.1",
"dragonmantank/cron-expression": "^3.3.3",
"filament/filament": "^3.2.70",
"filament/spatie-laravel-settings-plugin": "^3.2.70",
"filament/filament": "^3.2.73",
"filament/spatie-laravel-settings-plugin": "^3.2.73",
"guzzlehttp/guzzle": "^7.8.1",
"influxdata/influxdb-client-php": "^3.5",
"laravel-notification-channels/telegram": "^5.0",
"laravel/framework": "^11.4",
"laravel/prompts": "^0.1.19",
"laravel/framework": "^11.7",
"laravel/prompts": "^0.1.21",
"laravel/sanctum": "^4.0.2",
"laravel/tinker": "^2.9.0",
"livewire/livewire": "^3.4.10",
"livewire/livewire": "^3.4.12",
"lorisleiva/laravel-actions": "^2.8.0",
"maennchen/zipstream-php": "^2.4",
"spatie/laravel-settings": "^3.3.2",
Expand All @@ -31,13 +31,13 @@
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.0",
"fakerphp/faker": "^1.23.1",
"laravel/pint": "^1.15.1",
"laravel/pint": "^1.15.3",
"laravel/sail": "^1.29.1",
"laravel/telescope": "^5.0.3",
"laravel/telescope": "^5.0.4",
"mockery/mockery": "^1.6.11",
"nunomaduro/collision": "^8.1.1",
"phpunit/phpunit": "^10.5.19",
"spatie/laravel-ignition": "^2.5.2",
"phpunit/phpunit": "^10.5.20",
"spatie/laravel-ignition": "^2.7.0",
"tightenco/duster": "^2.7.5"
},
"autoload": {
Expand Down
Loading