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 *
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.
0 commit comments