|
5 | 5 |
|
6 | 6 | /** |
7 | 7 | * 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. |
9 | 9 | * |
10 | 10 | * This file should not be included in your code, only analyzed by your IDE! |
11 | 11 | * |
|
2889 | 2889 | { |
2890 | 2890 | /** @var \Illuminate\Broadcasting\BroadcastManager $instance */ |
2891 | 2891 | 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); |
2892 | 2919 | } |
2893 | 2920 | /** |
2894 | 2921 | * Begin broadcasting an event. |
|
10497 | 10524 | { |
10498 | 10525 | /** @var \Illuminate\Cache\RateLimiter $instance */ |
10499 | 10526 | 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); |
10500 | 10540 | } |
10501 | 10541 | /** |
10502 | 10542 | * Get the number of attempts for the given key. |
|
11103 | 11143 | return $instance->mergeIfMissing($input); |
11104 | 11144 | } |
11105 | 11145 | /** |
11106 | | - * Replace the input for the current request. |
| 11146 | + * Replace the input values for the current request. |
11107 | 11147 | * |
11108 | 11148 | * @param array $input |
11109 | 11149 | * @return \Illuminate\Http\Request |
|
16209 | 16249 | { |
16210 | 16250 | /** @var \Illuminate\Routing\UrlGenerator $instance */ |
16211 | 16251 | 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); |
16212 | 16266 | } |
16213 | 16267 | /** |
16214 | 16268 | * Generate a secure, absolute URL to the given path. |
|
18238 | 18292 | { |
18239 | 18293 | /** @var \Livewire\LivewireManager $instance */ |
18240 | 18294 | 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(); |
18241 | 18304 | } |
18242 | 18305 | /** |
18243 | 18306 | * |
@@ -18784,10 +18847,10 @@ |
18784 | 18847 | * |
18785 | 18848 | * |
18786 | 18849 | * @static |
18787 | | - */ public static function registerErrorHandler() |
| 18850 | + */ public static function registerErrorHandler($errorLevels = null) |
18788 | 18851 | { |
18789 | 18852 | /** @var \Spatie\FlareClient\Flare $instance */ |
18790 | | - return $instance->registerErrorHandler(); |
| 18853 | + return $instance->registerErrorHandler($errorLevels); |
18791 | 18854 | } |
18792 | 18855 | /** |
18793 | 18856 | * |
@@ -18855,10 +18918,19 @@ |
18855 | 18918 | * |
18856 | 18919 | * |
18857 | 18920 | * @static |
18858 | | - */ public static function report($throwable, $callback = null, $report = null) |
| 18921 | + */ public static function report($throwable, $callback = null, $report = null, $handled = null) |
18859 | 18922 | { |
18860 | 18923 | /** @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); |
18862 | 18934 | } |
18863 | 18935 | /** |
18864 | 18936 | * |
@@ -24594,6 +24666,57 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model { |
24594 | 24666 | { |
24595 | 24667 | /** @var \Illuminate\Database\Query\Builder $instance */ |
24596 | 24668 | 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); |
24597 | 24720 | } |
24598 | 24721 | /** |
24599 | 24722 | * Add a clause that determines if a JSON path exists to the query. |
@@ -25738,6 +25861,11 @@ class Flare extends \Spatie\LaravelIgnition\Facades\Flare {} |
25738 | 25861 | } |
25739 | 25862 |
|
25740 | 25863 |
|
| 25864 | +namespace Facades\Livewire\Features\SupportFileUploads { |
| 25865 | + /** |
| 25866 | + * @mixin \Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl */ |
| 25867 | + class GenerateSignedUploadUrl extends \Livewire\Features\SupportFileUploads\GenerateSignedUploadUrl {} |
| 25868 | +} |
25741 | 25869 |
|
25742 | 25870 |
|
25743 | 25871 |
|
0 commit comments