|
4 | 4 |
|
5 | 5 | /** |
6 | 6 | * A helper file for Laravel, to provide autocomplete information to your IDE |
7 | | - * Generated for Laravel 10.26.2. |
| 7 | + * Generated for Laravel 10.28.0. |
8 | 8 | * |
9 | 9 | * This file should not be included in your code, only analyzed by your IDE! |
10 | 10 | * |
@@ -18484,7 +18484,6 @@ public static function sanitizeHtml() |
18484 | 18484 | /** |
18485 | 18485 | * |
18486 | 18486 | * |
18487 | | - * @method static void setUpdateUri() |
18488 | 18487 | * @see \Livewire\LivewireManager |
18489 | 18488 | */ |
18490 | 18489 | class Livewire { |
@@ -18753,6 +18752,26 @@ public static function withQueryParams($params) |
18753 | 18752 | * |
18754 | 18753 | * @static |
18755 | 18754 | */ |
| 18755 | + public static function withCookie($name, $value) |
| 18756 | + { |
| 18757 | + /** @var \Livewire\LivewireManager $instance */ |
| 18758 | + return $instance->withCookie($name, $value); |
| 18759 | + } |
| 18760 | + /** |
| 18761 | + * |
| 18762 | + * |
| 18763 | + * @static |
| 18764 | + */ |
| 18765 | + public static function withCookies($cookies) |
| 18766 | + { |
| 18767 | + /** @var \Livewire\LivewireManager $instance */ |
| 18768 | + return $instance->withCookies($cookies); |
| 18769 | + } |
| 18770 | + /** |
| 18771 | + * |
| 18772 | + * |
| 18773 | + * @static |
| 18774 | + */ |
18756 | 18775 | public static function test($name, $params = []) |
18757 | 18776 | { |
18758 | 18777 | /** @var \Livewire\LivewireManager $instance */ |
@@ -21629,6 +21648,17 @@ public static function extends($view, $params = []) |
21629 | 21648 | public static function layout($view, $params = []) |
21630 | 21649 | { |
21631 | 21650 | return \Illuminate\View\View::layout($view, $params); |
| 21651 | + } |
| 21652 | + /** |
| 21653 | + * |
| 21654 | + * |
| 21655 | + * @see \Livewire\Features\SupportPageComponents\SupportPageComponents::registerLayoutViewMacros() |
| 21656 | + * @param callable $callback |
| 21657 | + * @static |
| 21658 | + */ |
| 21659 | + public static function response($callback) |
| 21660 | + { |
| 21661 | + return \Illuminate\View\View::response($callback); |
21632 | 21662 | } |
21633 | 21663 |
|
21634 | 21664 | } |
@@ -22592,6 +22622,39 @@ public static function chunkById($count, $callback, $column = null, $alias = nul |
22592 | 22622 | return $instance->chunkById($count, $callback, $column, $alias); |
22593 | 22623 | } |
22594 | 22624 |
|
| 22625 | + /** |
| 22626 | + * Chunk the results of a query by comparing IDs in descending order. |
| 22627 | + * |
| 22628 | + * @param int $count |
| 22629 | + * @param callable $callback |
| 22630 | + * @param string|null $column |
| 22631 | + * @param string|null $alias |
| 22632 | + * @return bool |
| 22633 | + * @static |
| 22634 | + */ |
| 22635 | + public static function chunkByIdDesc($count, $callback, $column = null, $alias = null) |
| 22636 | + { |
| 22637 | + /** @var \Illuminate\Database\Eloquent\Builder $instance */ |
| 22638 | + return $instance->chunkByIdDesc($count, $callback, $column, $alias); |
| 22639 | + } |
| 22640 | + |
| 22641 | + /** |
| 22642 | + * Chunk the results of a query by comparing IDs in a given order. |
| 22643 | + * |
| 22644 | + * @param int $count |
| 22645 | + * @param callable $callback |
| 22646 | + * @param string|null $column |
| 22647 | + * @param string|null $alias |
| 22648 | + * @param bool $descending |
| 22649 | + * @return bool |
| 22650 | + * @static |
| 22651 | + */ |
| 22652 | + public static function orderedChunkById($count, $callback, $column = null, $alias = null, $descending = false) |
| 22653 | + { |
| 22654 | + /** @var \Illuminate\Database\Eloquent\Builder $instance */ |
| 22655 | + return $instance->orderedChunkById($count, $callback, $column, $alias, $descending); |
| 22656 | + } |
| 22657 | + |
22595 | 22658 | /** |
22596 | 22659 | * Execute a callback over each item while chunking by ID. |
22597 | 22660 | * |
|
0 commit comments