|
5 | 5 |
|
6 | 6 | /** |
7 | 7 | * A helper file for Laravel, to provide autocomplete information to your IDE |
8 | | - * Generated for Laravel 10.48.2. |
| 8 | + * Generated for Laravel 10.48.5. |
9 | 9 | * |
10 | 10 | * This file should not be included in your code, only analyzed by your IDE! |
11 | 11 | * |
|
8862 | 8862 | { |
8863 | 8863 | /** @var \Illuminate\Support\Testing\Fakes\NotificationFake $instance */ |
8864 | 8864 | return $instance->hasSent($notifiable, $notification); |
| 8865 | + } |
| 8866 | + /** |
| 8867 | + * Specify if notification should be serialized and restored when being "pushed" to the queue. |
| 8868 | + * |
| 8869 | + * @param bool $serializeAndRestore |
| 8870 | + * @return \Illuminate\Support\Testing\Fakes\NotificationFake |
| 8871 | + * @static |
| 8872 | + */ public static function serializeAndRestore($serializeAndRestore = true) |
| 8873 | + { |
| 8874 | + /** @var \Illuminate\Support\Testing\Fakes\NotificationFake $instance */ |
| 8875 | + return $instance->serializeAndRestore($serializeAndRestore); |
8865 | 8876 | } |
8866 | 8877 | /** |
8867 | 8878 | * Get the notifications that have been sent. |
@@ -20024,22 +20035,26 @@ |
20024 | 20035 | * |
20025 | 20036 | * @see \Filament\Tables\Testing\TestsActions::assertTableActionExists() |
20026 | 20037 | * @param array|string $name |
| 20038 | + * @param \Closure|null $checkActionUsing |
| 20039 | + * @param mixed $record |
20027 | 20040 | * @return static |
20028 | 20041 | * @static |
20029 | | - */ public static function assertTableActionExists($name) |
| 20042 | + */ public static function assertTableActionExists($name, $checkActionUsing = null, $record = null) |
20030 | 20043 | { |
20031 | | - return \Livewire\Features\SupportTesting\Testable::assertTableActionExists($name); |
| 20044 | + return \Livewire\Features\SupportTesting\Testable::assertTableActionExists($name, $checkActionUsing, $record); |
20032 | 20045 | } |
20033 | 20046 | /** |
20034 | 20047 | * |
20035 | 20048 | * |
20036 | 20049 | * @see \Filament\Tables\Testing\TestsActions::assertTableActionDoesNotExist() |
20037 | 20050 | * @param array|string $name |
| 20051 | + * @param \Closure|null $checkActionUsing |
| 20052 | + * @param mixed $record |
20038 | 20053 | * @return static |
20039 | 20054 | * @static |
20040 | | - */ public static function assertTableActionDoesNotExist($name) |
| 20055 | + */ public static function assertTableActionDoesNotExist($name, $checkActionUsing = null, $record = null) |
20041 | 20056 | { |
20042 | | - return \Livewire\Features\SupportTesting\Testable::assertTableActionDoesNotExist($name); |
| 20057 | + return \Livewire\Features\SupportTesting\Testable::assertTableActionDoesNotExist($name, $checkActionUsing, $record); |
20043 | 20058 | } |
20044 | 20059 | /** |
20045 | 20060 | * |
|
20630 | 20645 | */ public static function assertTableColumnExists($name, $checkColumnUsing = null, $record = null) |
20631 | 20646 | { |
20632 | 20647 | return \Livewire\Features\SupportTesting\Testable::assertTableColumnExists($name, $checkColumnUsing, $record); |
| 20648 | + } |
| 20649 | + /** |
| 20650 | + * |
| 20651 | + * |
| 20652 | + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnDoesNotExist() |
| 20653 | + * @param string $name |
| 20654 | + * @param \Closure|null $checkColumnUsing |
| 20655 | + * @param mixed $record |
| 20656 | + * @return static |
| 20657 | + * @static |
| 20658 | + */ public static function assertTableColumnDoesNotExist($name, $checkColumnUsing = null, $record = null) |
| 20659 | + { |
| 20660 | + return \Livewire\Features\SupportTesting\Testable::assertTableColumnDoesNotExist($name, $checkColumnUsing, $record); |
20633 | 20661 | } |
20634 | 20662 | /** |
20635 | 20663 | * |
@@ -22682,10 +22710,11 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model { |
22682 | 22710 | * @param mixed $direction |
22683 | 22711 | * @param mixed $aggregation |
22684 | 22712 | * @param mixed $joinType |
| 22713 | + * @param mixed $aliases |
22685 | 22714 | * @static |
22686 | | - */ public static function orderByPowerJoins($sort, $direction = 'asc', $aggregation = null, $joinType = 'join') |
| 22715 | + */ public static function orderByPowerJoins($sort, $direction = 'asc', $aggregation = null, $joinType = 'join', $aliases = null) |
22687 | 22716 | { |
22688 | | - return \Illuminate\Database\Eloquent\Builder::orderByPowerJoins($sort, $direction, $aggregation, $joinType); |
| 22717 | + return \Illuminate\Database\Eloquent\Builder::orderByPowerJoins($sort, $direction, $aggregation, $joinType, $aliases); |
22689 | 22718 | } |
22690 | 22719 | /** |
22691 | 22720 | * |
|
0 commit comments