Skip to content

Commit 2e5fbd2

Browse files
Laravel 11.19.0 Shift (#1633)
* Bump Laravel version constraint * composer update * updated composer dependencies --------- Co-authored-by: Shift <[email protected]>
1 parent 4e42b78 commit 2e5fbd2

File tree

4 files changed

+180
-95
lines changed

4 files changed

+180
-95
lines changed

_ide_helper.php

Lines changed: 91 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.18.1.
8+
* Generated for Laravel 11.19.0.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -20133,6 +20133,64 @@
2013320133
*/ public static function assertFormFieldIsVisible($fieldName, $formName = 'form')
2013420134
{
2013520135
return \Livewire\Features\SupportTesting\Testable::assertFormFieldIsVisible($fieldName, $formName);
20136+
}
20137+
/**
20138+
*
20139+
*
20140+
* @see \Filament\Forms\Testing\TestsForms::assertWizardStepExists()
20141+
* @param int $step
20142+
* @param string $formName
20143+
* @return static
20144+
* @static
20145+
*/ public static function assertWizardStepExists($step, $formName = 'form')
20146+
{
20147+
return \Livewire\Features\SupportTesting\Testable::assertWizardStepExists($step, $formName);
20148+
}
20149+
/**
20150+
*
20151+
*
20152+
* @see \Filament\Forms\Testing\TestsForms::assertWizardCurrentStep()
20153+
* @param int $step
20154+
* @param string $formName
20155+
* @return static
20156+
* @static
20157+
*/ public static function assertWizardCurrentStep($step, $formName = 'form')
20158+
{
20159+
return \Livewire\Features\SupportTesting\Testable::assertWizardCurrentStep($step, $formName);
20160+
}
20161+
/**
20162+
*
20163+
*
20164+
* @see \Filament\Forms\Testing\TestsForms::goToWizardStep()
20165+
* @param int $step
20166+
* @param string $formName
20167+
* @return static
20168+
* @static
20169+
*/ public static function goToWizardStep($step, $formName = 'form')
20170+
{
20171+
return \Livewire\Features\SupportTesting\Testable::goToWizardStep($step, $formName);
20172+
}
20173+
/**
20174+
*
20175+
*
20176+
* @see \Filament\Forms\Testing\TestsForms::goToNextWizardStep()
20177+
* @param string $formName
20178+
* @return static
20179+
* @static
20180+
*/ public static function goToNextWizardStep($formName = 'form')
20181+
{
20182+
return \Livewire\Features\SupportTesting\Testable::goToNextWizardStep($formName);
20183+
}
20184+
/**
20185+
*
20186+
*
20187+
* @see \Filament\Forms\Testing\TestsForms::goToPreviousWizardStep()
20188+
* @param string $formName
20189+
* @return static
20190+
* @static
20191+
*/ public static function goToPreviousWizardStep($formName = 'form')
20192+
{
20193+
return \Livewire\Features\SupportTesting\Testable::goToPreviousWizardStep($formName);
2013620194
}
2013720195
/**
2013820196
*
@@ -24301,7 +24359,7 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2430124359
/**
2430224360
* Add a "where like" clause to the query.
2430324361
*
24304-
* @param string $column
24362+
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
2430524363
* @param string $value
2430624364
* @param bool $caseSensitive
2430724365
* @param string $boolean
@@ -24316,7 +24374,7 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2431624374
/**
2431724375
* Add an "or where like" clause to the query.
2431824376
*
24319-
* @param string $column
24377+
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
2432024378
* @param string $value
2432124379
* @param bool $caseSensitive
2432224380
* @return \Illuminate\Database\Query\Builder
@@ -24329,7 +24387,7 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2432924387
/**
2433024388
* Add a "where not like" clause to the query.
2433124389
*
24332-
* @param string $column
24390+
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
2433324391
* @param string $value
2433424392
* @param bool $caseSensitive
2433524393
* @param string $boolean
@@ -24343,7 +24401,7 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2434324401
/**
2434424402
* Add an "or where not like" clause to the query.
2434524403
*
24346-
* @param string $columns
24404+
* @param \Illuminate\Contracts\Database\Query\Expression|string $column
2434724405
* @param string $value
2434824406
* @param bool $caseSensitive
2434924407
* @return \Illuminate\Database\Query\Builder
@@ -25103,7 +25161,7 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2510325161
return $instance->orWhereAll($columns, $operator, $value);
2510425162
}
2510525163
/**
25106-
* Add an "where" clause to the query for multiple columns with "or" conditions between them.
25164+
* Add a "where" clause to the query for multiple columns with "or" conditions between them.
2510725165
*
2510825166
* @param string[] $columns
2510925167
* @param string $operator
@@ -25128,6 +25186,33 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2512825186
{
2512925187
/** @var \Illuminate\Database\Query\Builder $instance */
2513025188
return $instance->orWhereAny($columns, $operator, $value);
25189+
}
25190+
/**
25191+
* Add a "where not" clause to the query for multiple columns where none of the conditions should be true.
25192+
*
25193+
* @param string[] $columns
25194+
* @param string $operator
25195+
* @param mixed $value
25196+
* @param string $boolean
25197+
* @return \Illuminate\Database\Query\Builder
25198+
* @static
25199+
*/ public static function whereNone($columns, $operator = null, $value = null, $boolean = 'and')
25200+
{
25201+
/** @var \Illuminate\Database\Query\Builder $instance */
25202+
return $instance->whereNone($columns, $operator, $value, $boolean);
25203+
}
25204+
/**
25205+
* Add an "or where not" clause to the query for multiple columns where none of the conditions should be true.
25206+
*
25207+
* @param string[] $columns
25208+
* @param string $operator
25209+
* @param mixed $value
25210+
* @return \Illuminate\Database\Query\Builder
25211+
* @static
25212+
*/ public static function orWhereNone($columns, $operator = null, $value = null)
25213+
{
25214+
/** @var \Illuminate\Database\Query\Builder $instance */
25215+
return $instance->orWhereNone($columns, $operator, $value);
2513125216
}
2513225217
/**
2513325218
* Add a "group by" clause to the query.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
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.96",
16-
"filament/spatie-laravel-settings-plugin": "^3.2.96",
15+
"filament/filament": "^3.2.97",
16+
"filament/spatie-laravel-settings-plugin": "^3.2.97",
1717
"geerlingguy/ping": "^1.2.1",
1818
"guzzlehttp/guzzle": "^7.9.2",
1919
"influxdata/influxdb-client-php": "^3.6",
2020
"laravel-notification-channels/telegram": "^5.0",
21-
"laravel/framework": "^11.18.1",
21+
"laravel/framework": "^11.19",
2222
"laravel/prompts": "^0.1.24",
2323
"laravel/sanctum": "^4.0.2",
2424
"laravel/tinker": "^2.9.0",
@@ -32,12 +32,12 @@
3232
"require-dev": {
3333
"barryvdh/laravel-ide-helper": "^3.1",
3434
"fakerphp/faker": "^1.23.1",
35-
"laravel/pint": "^1.17.0",
35+
"laravel/pint": "^1.17.1",
3636
"laravel/sail": "^1.31.0",
3737
"laravel/telescope": "^5.1.1",
3838
"mockery/mockery": "^1.6.12",
39-
"nunomaduro/collision": "^8.3.0",
40-
"phpunit/phpunit": "^11.2.8",
39+
"nunomaduro/collision": "^8.4.0",
40+
"phpunit/phpunit": "^11.3.0",
4141
"spatie/laravel-ignition": "^2.8.0",
4242
"tightenco/duster": "^3.0.1"
4343
},

0 commit comments

Comments
 (0)