Skip to content

Commit 16e3c7b

Browse files
Laravel 11.7.0 Shift (alexjustesen#1420)
Co-authored-by: Shift <[email protected]>
1 parent 45ea160 commit 16e3c7b

File tree

6 files changed

+484
-347
lines changed

6 files changed

+484
-347
lines changed

_ide_helper.php

Lines changed: 134 additions & 6 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 11.4.0.
8+
* Generated for Laravel 11.7.0.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -2889,6 +2889,33 @@
28892889
{
28902890
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
28912891
return $instance->socket($request);
2892+
}
2893+
/**
2894+
* Begin sending an anonymous broadcast to the given channels.
2895+
*
2896+
* @static
2897+
*/ public static function on($channels)
2898+
{
2899+
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
2900+
return $instance->on($channels);
2901+
}
2902+
/**
2903+
* Begin sending an anonymous broadcast to the given private channels.
2904+
*
2905+
* @static
2906+
*/ public static function private($channel)
2907+
{
2908+
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
2909+
return $instance->private($channel);
2910+
}
2911+
/**
2912+
* Begin sending an anonymous broadcast to the given presence channels.
2913+
*
2914+
* @static
2915+
*/ public static function presence($channel)
2916+
{
2917+
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
2918+
return $instance->presence($channel);
28922919
}
28932920
/**
28942921
* Begin broadcasting an event.
@@ -10497,6 +10524,19 @@
1049710524
{
1049810525
/** @var \Illuminate\Cache\RateLimiter $instance */
1049910526
return $instance->increment($key, $decaySeconds, $amount);
10527+
}
10528+
/**
10529+
* Decrement the counter for a given key for a given decay time by a given amount.
10530+
*
10531+
* @param string $key
10532+
* @param int $decaySeconds
10533+
* @param int $amount
10534+
* @return int
10535+
* @static
10536+
*/ public static function decrement($key, $decaySeconds = 60, $amount = 1)
10537+
{
10538+
/** @var \Illuminate\Cache\RateLimiter $instance */
10539+
return $instance->decrement($key, $decaySeconds, $amount);
1050010540
}
1050110541
/**
1050210542
* Get the number of attempts for the given key.
@@ -11103,7 +11143,7 @@
1110311143
return $instance->mergeIfMissing($input);
1110411144
}
1110511145
/**
11106-
* Replace the input for the current request.
11146+
* Replace the input values for the current request.
1110711147
*
1110811148
* @param array $input
1110911149
* @return \Illuminate\Http\Request
@@ -16209,6 +16249,20 @@
1620916249
{
1621016250
/** @var \Illuminate\Routing\UrlGenerator $instance */
1621116251
return $instance->to($path, $extra, $secure);
16252+
}
16253+
/**
16254+
* Generate an absolute URL with the given query parameters.
16255+
*
16256+
* @param string $path
16257+
* @param array $query
16258+
* @param mixed $extra
16259+
* @param bool|null $secure
16260+
* @return string
16261+
* @static
16262+
*/ public static function query($path, $query = [], $extra = [], $secure = null)
16263+
{
16264+
/** @var \Illuminate\Routing\UrlGenerator $instance */
16265+
return $instance->query($path, $query, $extra, $secure);
1621216266
}
1621316267
/**
1621416268
* Generate a secure, absolute URL to the given path.
@@ -18238,6 +18292,15 @@
1823818292
{
1823918293
/** @var \Livewire\LivewireManager $instance */
1824018294
return $instance->withHeaders($headers);
18295+
}
18296+
/**
18297+
*
18298+
*
18299+
* @static
18300+
*/ public static function withoutLazyLoading()
18301+
{
18302+
/** @var \Livewire\LivewireManager $instance */
18303+
return $instance->withoutLazyLoading();
1824118304
}
1824218305
/**
1824318306
*
@@ -18784,10 +18847,10 @@
1878418847
*
1878518848
*
1878618849
* @static
18787-
*/ public static function registerErrorHandler()
18850+
*/ public static function registerErrorHandler($errorLevels = null)
1878818851
{
1878918852
/** @var \Spatie\FlareClient\Flare $instance */
18790-
return $instance->registerErrorHandler();
18853+
return $instance->registerErrorHandler($errorLevels);
1879118854
}
1879218855
/**
1879318856
*
@@ -18855,10 +18918,19 @@
1885518918
*
1885618919
*
1885718920
* @static
18858-
*/ public static function report($throwable, $callback = null, $report = null)
18921+
*/ public static function report($throwable, $callback = null, $report = null, $handled = null)
1885918922
{
1886018923
/** @var \Spatie\FlareClient\Flare $instance */
18861-
return $instance->report($throwable, $callback, $report);
18924+
return $instance->report($throwable, $callback, $report, $handled);
18925+
}
18926+
/**
18927+
*
18928+
*
18929+
* @static
18930+
*/ public static function reportHandled($throwable)
18931+
{
18932+
/** @var \Spatie\FlareClient\Flare $instance */
18933+
return $instance->reportHandled($throwable);
1886218934
}
1886318935
/**
1886418936
*
@@ -24594,6 +24666,57 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2459424666
{
2459524667
/** @var \Illuminate\Database\Query\Builder $instance */
2459624668
return $instance->orWhereJsonDoesntContain($column, $value);
24669+
}
24670+
/**
24671+
* Add a "where JSON overlaps" clause to the query.
24672+
*
24673+
* @param string $column
24674+
* @param mixed $value
24675+
* @param string $boolean
24676+
* @param bool $not
24677+
* @return \Illuminate\Database\Query\Builder
24678+
* @static
24679+
*/ public static function whereJsonOverlaps($column, $value, $boolean = 'and', $not = false)
24680+
{
24681+
/** @var \Illuminate\Database\Query\Builder $instance */
24682+
return $instance->whereJsonOverlaps($column, $value, $boolean, $not);
24683+
}
24684+
/**
24685+
* Add an "or where JSON overlaps" clause to the query.
24686+
*
24687+
* @param string $column
24688+
* @param mixed $value
24689+
* @return \Illuminate\Database\Query\Builder
24690+
* @static
24691+
*/ public static function orWhereJsonOverlaps($column, $value)
24692+
{
24693+
/** @var \Illuminate\Database\Query\Builder $instance */
24694+
return $instance->orWhereJsonOverlaps($column, $value);
24695+
}
24696+
/**
24697+
* Add a "where JSON not overlap" clause to the query.
24698+
*
24699+
* @param string $column
24700+
* @param mixed $value
24701+
* @param string $boolean
24702+
* @return \Illuminate\Database\Query\Builder
24703+
* @static
24704+
*/ public static function whereJsonDoesntOverlap($column, $value, $boolean = 'and')
24705+
{
24706+
/** @var \Illuminate\Database\Query\Builder $instance */
24707+
return $instance->whereJsonDoesntOverlap($column, $value, $boolean);
24708+
}
24709+
/**
24710+
* Add an "or where JSON not overlap" clause to the query.
24711+
*
24712+
* @param string $column
24713+
* @param mixed $value
24714+
* @return \Illuminate\Database\Query\Builder
24715+
* @static
24716+
*/ public static function orWhereJsonDoesntOverlap($column, $value)
24717+
{
24718+
/** @var \Illuminate\Database\Query\Builder $instance */
24719+
return $instance->orWhereJsonDoesntOverlap($column, $value);
2459724720
}
2459824721
/**
2459924722
* Add a clause that determines if a JSON path exists to the query.
@@ -25738,6 +25861,11 @@ class Flare extends \Spatie\LaravelIgnition\Facades\Flare {}
2573825861
}
2573925862

2574025863

25864+
namespace Facades\Livewire\Features\SupportFileUploads {
25865+
/**
25866+
* @mixin \Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl */
25867+
class GenerateSignedUploadUrl extends \Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl {}
25868+
}
2574125869

2574225870

2574325871

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
"awcodes/filament-versions": "^2.0.1",
1313
"chrisullyott/php-filesize": "^4.2.1",
1414
"dragonmantank/cron-expression": "^3.3.3",
15-
"filament/filament": "^3.2.70",
16-
"filament/spatie-laravel-settings-plugin": "^3.2.70",
15+
"filament/filament": "^3.2.73",
16+
"filament/spatie-laravel-settings-plugin": "^3.2.73",
1717
"guzzlehttp/guzzle": "^7.8.1",
1818
"influxdata/influxdb-client-php": "^3.5",
1919
"laravel-notification-channels/telegram": "^5.0",
20-
"laravel/framework": "^11.4",
21-
"laravel/prompts": "^0.1.19",
20+
"laravel/framework": "^11.7",
21+
"laravel/prompts": "^0.1.21",
2222
"laravel/sanctum": "^4.0.2",
2323
"laravel/tinker": "^2.9.0",
24-
"livewire/livewire": "^3.4.10",
24+
"livewire/livewire": "^3.4.12",
2525
"lorisleiva/laravel-actions": "^2.8.0",
2626
"maennchen/zipstream-php": "^2.4",
2727
"spatie/laravel-settings": "^3.3.2",
@@ -31,13 +31,13 @@
3131
"require-dev": {
3232
"barryvdh/laravel-ide-helper": "^3.0",
3333
"fakerphp/faker": "^1.23.1",
34-
"laravel/pint": "^1.15.1",
34+
"laravel/pint": "^1.15.3",
3535
"laravel/sail": "^1.29.1",
36-
"laravel/telescope": "^5.0.3",
36+
"laravel/telescope": "^5.0.4",
3737
"mockery/mockery": "^1.6.11",
3838
"nunomaduro/collision": "^8.1.1",
39-
"phpunit/phpunit": "^10.5.19",
40-
"spatie/laravel-ignition": "^2.5.2",
39+
"phpunit/phpunit": "^10.5.20",
40+
"spatie/laravel-ignition": "^2.7.0",
4141
"tightenco/duster": "^2.7.5"
4242
},
4343
"autoload": {

0 commit comments

Comments
 (0)