Skip to content

Commit f8a2386

Browse files
Laravel 10.48.5 Shift (alexjustesen#1361)
Co-authored-by: Shift <[email protected]>
1 parent c04701c commit f8a2386

File tree

6 files changed

+340
-307
lines changed

6 files changed

+340
-307
lines changed

_ide_helper.php

Lines changed: 36 additions & 7 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 10.48.2.
8+
* Generated for Laravel 10.48.5.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -8862,6 +8862,17 @@
88628862
{
88638863
/** @var \Illuminate\Support\Testing\Fakes\NotificationFake $instance */
88648864
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);
88658876
}
88668877
/**
88678878
* Get the notifications that have been sent.
@@ -20024,22 +20035,26 @@
2002420035
*
2002520036
* @see \Filament\Tables\Testing\TestsActions::assertTableActionExists()
2002620037
* @param array|string $name
20038+
* @param \Closure|null $checkActionUsing
20039+
* @param mixed $record
2002720040
* @return static
2002820041
* @static
20029-
*/ public static function assertTableActionExists($name)
20042+
*/ public static function assertTableActionExists($name, $checkActionUsing = null, $record = null)
2003020043
{
20031-
return \Livewire\Features\SupportTesting\Testable::assertTableActionExists($name);
20044+
return \Livewire\Features\SupportTesting\Testable::assertTableActionExists($name, $checkActionUsing, $record);
2003220045
}
2003320046
/**
2003420047
*
2003520048
*
2003620049
* @see \Filament\Tables\Testing\TestsActions::assertTableActionDoesNotExist()
2003720050
* @param array|string $name
20051+
* @param \Closure|null $checkActionUsing
20052+
* @param mixed $record
2003820053
* @return static
2003920054
* @static
20040-
*/ public static function assertTableActionDoesNotExist($name)
20055+
*/ public static function assertTableActionDoesNotExist($name, $checkActionUsing = null, $record = null)
2004120056
{
20042-
return \Livewire\Features\SupportTesting\Testable::assertTableActionDoesNotExist($name);
20057+
return \Livewire\Features\SupportTesting\Testable::assertTableActionDoesNotExist($name, $checkActionUsing, $record);
2004320058
}
2004420059
/**
2004520060
*
@@ -20630,6 +20645,19 @@
2063020645
*/ public static function assertTableColumnExists($name, $checkColumnUsing = null, $record = null)
2063120646
{
2063220647
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);
2063320661
}
2063420662
/**
2063520663
*
@@ -22682,10 +22710,11 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2268222710
* @param mixed $direction
2268322711
* @param mixed $aggregation
2268422712
* @param mixed $joinType
22713+
* @param mixed $aliases
2268522714
* @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)
2268722716
{
22688-
return \Illuminate\Database\Eloquent\Builder::orderByPowerJoins($sort, $direction, $aggregation, $joinType);
22717+
return \Illuminate\Database\Eloquent\Builder::orderByPowerJoins($sort, $direction, $aggregation, $joinType, $aliases);
2268922718
}
2269022719
/**
2269122720
*

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,33 @@
1313
"chrisullyott/php-filesize": "^4.2.1",
1414
"doctrine/dbal": "^3.8.3",
1515
"dragonmantank/cron-expression": "^3.3.3",
16-
"filament/filament": "^3.2.50",
17-
"filament/spatie-laravel-settings-plugin": "^3.2.50",
16+
"filament/filament": "^3.2.63",
17+
"filament/spatie-laravel-settings-plugin": "^3.2.63",
1818
"guzzlehttp/guzzle": "^7.8.1",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.48.2",
22-
"laravel/prompts": "^0.1.16",
21+
"laravel/framework": "^10.48.5",
22+
"laravel/prompts": "^0.1.18",
2323
"laravel/sanctum": "^3.3.3",
2424
"laravel/tinker": "^2.9.0",
25-
"livewire/livewire": "^3.4.9",
25+
"livewire/livewire": "^3.4.10",
2626
"lorisleiva/laravel-actions": "^2.8.0",
2727
"maennchen/zipstream-php": "^2.4",
2828
"spatie/laravel-settings": "^2.8.3",
2929
"spatie/laravel-webhook-server": "^3.8.1",
30-
"timokoerber/laravel-one-time-operations": "^1.4"
30+
"timokoerber/laravel-one-time-operations": "^1.4.2"
3131
},
3232
"require-dev": {
3333
"barryvdh/laravel-ide-helper": "^2.15.1",
3434
"fakerphp/faker": "^1.23.1",
35-
"laravel/pint": "^1.14.0",
36-
"laravel/sail": "^1.29.0",
35+
"laravel/pint": "^1.15.1",
36+
"laravel/sail": "^1.29.1",
3737
"laravel/telescope": "^4.17.6",
38-
"mockery/mockery": "^1.6.9",
38+
"mockery/mockery": "^1.6.11",
3939
"nunomaduro/collision": "^7.10.0",
40-
"phpunit/phpunit": "^10.5.13",
41-
"spatie/laravel-ignition": "^2.4.2",
42-
"tightenco/duster": "^2.7.3"
40+
"phpunit/phpunit": "^10.5.17",
41+
"spatie/laravel-ignition": "^2.5.1",
42+
"tightenco/duster": "^2.7.4"
4343
},
4444
"autoload": {
4545
"files": [

0 commit comments

Comments
 (0)