|
4 | 4 |
|
5 | 5 | /** |
6 | 6 | * A helper file for Laravel, to provide autocomplete information to your IDE |
7 | | - * Generated for Laravel 9.39.0. |
| 7 | + * Generated for Laravel 9.41.0. |
8 | 8 | * |
9 | 9 | * This file should not be included in your code, only analyzed by your IDE! |
10 | 10 | * |
@@ -9213,7 +9213,7 @@ public static function flushMacros() |
9213 | 9213 | * |
9214 | 9214 | * @method static mixed reset(array $credentials, \Closure $callback) |
9215 | 9215 | * @method static string sendResetLink(array $credentials, \Closure $callback = null) |
9216 | | - * @method static \Illuminate\Contracts\Auth\CanResetPassword getUser(array $credentials) |
| 9216 | + * @method static \Illuminate\Contracts\Auth\CanResetPassword|null getUser(array $credentials) |
9217 | 9217 | * @method static string createToken(\Illuminate\Contracts\Auth\CanResetPassword $user) |
9218 | 9218 | * @method static void deleteToken(\Illuminate\Contracts\Auth\CanResetPassword $user) |
9219 | 9219 | * @method static bool tokenExists(\Illuminate\Contracts\Auth\CanResetPassword $user, string $token) |
@@ -12109,6 +12109,20 @@ public static function missing($key) |
12109 | 12109 | { |
12110 | 12110 | /** @var \Illuminate\Http\Request $instance */ |
12111 | 12111 | return $instance->missing($key); |
| 12112 | + } |
| 12113 | + /** |
| 12114 | + * Apply the callback if the request is missing the given input item key. |
| 12115 | + * |
| 12116 | + * @param string $key |
| 12117 | + * @param callable $callback |
| 12118 | + * @param callable|null $default |
| 12119 | + * @return $this|mixed |
| 12120 | + * @static |
| 12121 | + */ |
| 12122 | + public static function whenMissing($key, $callback, $default = null) |
| 12123 | + { |
| 12124 | + /** @var \Illuminate\Http\Request $instance */ |
| 12125 | + return $instance->whenMissing($key, $callback, $default); |
12112 | 12126 | } |
12113 | 12127 | /** |
12114 | 12128 | * Get the keys for all of the input and files. |
@@ -17253,6 +17267,18 @@ public static function withEntryPoints($entryPoints) |
17253 | 17267 | { |
17254 | 17268 | /** @var \Illuminate\Foundation\Vite $instance */ |
17255 | 17269 | return $instance->withEntryPoints($entryPoints); |
| 17270 | + } |
| 17271 | + /** |
| 17272 | + * Set the filename for the manifest file. |
| 17273 | + * |
| 17274 | + * @param string $filename |
| 17275 | + * @return \Illuminate\Foundation\Vite |
| 17276 | + * @static |
| 17277 | + */ |
| 17278 | + public static function useManifestFilename($filename) |
| 17279 | + { |
| 17280 | + /** @var \Illuminate\Foundation\Vite $instance */ |
| 17281 | + return $instance->useManifestFilename($filename); |
17256 | 17282 | } |
17257 | 17283 | /** |
17258 | 17284 | * Get the Vite "hot" file path. |
@@ -17359,6 +17385,17 @@ public static function manifestHash($buildDirectory = null) |
17359 | 17385 | { |
17360 | 17386 | /** @var \Illuminate\Foundation\Vite $instance */ |
17361 | 17387 | return $instance->manifestHash($buildDirectory); |
| 17388 | + } |
| 17389 | + /** |
| 17390 | + * Determine if the HMR server is running. |
| 17391 | + * |
| 17392 | + * @return bool |
| 17393 | + * @static |
| 17394 | + */ |
| 17395 | + public static function isRunningHot() |
| 17396 | + { |
| 17397 | + /** @var \Illuminate\Foundation\Vite $instance */ |
| 17398 | + return $instance->isRunningHot(); |
17362 | 17399 | } |
17363 | 17400 | /** |
17364 | 17401 | * Get the Vite tag content as a string of HTML. |
@@ -19427,6 +19464,114 @@ public static function assertTableColumnStateSet($name, $value, $record) |
19427 | 19464 | public static function assertTableColumnStateNotSet($name, $value, $record) |
19428 | 19465 | { |
19429 | 19466 | return \Livewire\Testing\TestableLivewire::assertTableColumnStateNotSet($name, $value, $record); |
| 19467 | + } |
| 19468 | + /** |
| 19469 | + * |
| 19470 | + * |
| 19471 | + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnFormattedStateSet() |
| 19472 | + * @param string $name |
| 19473 | + * @param mixed $value |
| 19474 | + * @param mixed $record |
| 19475 | + * @return static |
| 19476 | + * @static |
| 19477 | + */ |
| 19478 | + public static function assertTableColumnFormattedStateSet($name, $value, $record) |
| 19479 | + { |
| 19480 | + return \Livewire\Testing\TestableLivewire::assertTableColumnFormattedStateSet($name, $value, $record); |
| 19481 | + } |
| 19482 | + /** |
| 19483 | + * |
| 19484 | + * |
| 19485 | + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnFormattedStateNotSet() |
| 19486 | + * @param string $name |
| 19487 | + * @param mixed $value |
| 19488 | + * @param mixed $record |
| 19489 | + * @return static |
| 19490 | + * @static |
| 19491 | + */ |
| 19492 | + public static function assertTableColumnFormattedStateNotSet($name, $value, $record) |
| 19493 | + { |
| 19494 | + return \Livewire\Testing\TestableLivewire::assertTableColumnFormattedStateNotSet($name, $value, $record); |
| 19495 | + } |
| 19496 | + /** |
| 19497 | + * |
| 19498 | + * |
| 19499 | + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnHasExtraAttributes() |
| 19500 | + * @param string $name |
| 19501 | + * @param array $attributes |
| 19502 | + * @param mixed $record |
| 19503 | + * @static |
| 19504 | + */ |
| 19505 | + public static function assertTableColumnHasExtraAttributes($name, $attributes, $record) |
| 19506 | + { |
| 19507 | + return \Livewire\Testing\TestableLivewire::assertTableColumnHasExtraAttributes($name, $attributes, $record); |
| 19508 | + } |
| 19509 | + /** |
| 19510 | + * |
| 19511 | + * |
| 19512 | + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnDoesNotHaveExtraAttributes() |
| 19513 | + * @param string $name |
| 19514 | + * @param array $attributes |
| 19515 | + * @param mixed $record |
| 19516 | + * @static |
| 19517 | + */ |
| 19518 | + public static function assertTableColumnDoesNotHaveExtraAttributes($name, $attributes, $record) |
| 19519 | + { |
| 19520 | + return \Livewire\Testing\TestableLivewire::assertTableColumnDoesNotHaveExtraAttributes($name, $attributes, $record); |
| 19521 | + } |
| 19522 | + /** |
| 19523 | + * |
| 19524 | + * |
| 19525 | + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnHasDescription() |
| 19526 | + * @param string $name |
| 19527 | + * @param mixed $description |
| 19528 | + * @param mixed $record |
| 19529 | + * @param string $position |
| 19530 | + * @static |
| 19531 | + */ |
| 19532 | + public static function assertTableColumnHasDescription($name, $description, $record, $position = 'below') |
| 19533 | + { |
| 19534 | + return \Livewire\Testing\TestableLivewire::assertTableColumnHasDescription($name, $description, $record, $position); |
| 19535 | + } |
| 19536 | + /** |
| 19537 | + * |
| 19538 | + * |
| 19539 | + * @see \Filament\Tables\Testing\TestsColumns::assertTableColumnDoesNotHaveDescription() |
| 19540 | + * @param string $name |
| 19541 | + * @param mixed $description |
| 19542 | + * @param mixed $record |
| 19543 | + * @param string $position |
| 19544 | + * @static |
| 19545 | + */ |
| 19546 | + public static function assertTableColumnDoesNotHaveDescription($name, $description, $record, $position = 'below') |
| 19547 | + { |
| 19548 | + return \Livewire\Testing\TestableLivewire::assertTableColumnDoesNotHaveDescription($name, $description, $record, $position); |
| 19549 | + } |
| 19550 | + /** |
| 19551 | + * |
| 19552 | + * |
| 19553 | + * @see \Filament\Tables\Testing\TestsColumns::assertSelectColumnHasOptions() |
| 19554 | + * @param string $name |
| 19555 | + * @param array $options |
| 19556 | + * @param mixed $record |
| 19557 | + * @static |
| 19558 | + */ |
| 19559 | + public static function assertSelectColumnHasOptions($name, $options, $record) |
| 19560 | + { |
| 19561 | + return \Livewire\Testing\TestableLivewire::assertSelectColumnHasOptions($name, $options, $record); |
| 19562 | + } |
| 19563 | + /** |
| 19564 | + * |
| 19565 | + * |
| 19566 | + * @see \Filament\Tables\Testing\TestsColumns::assertSelectColumnDoesNotHaveOptions() |
| 19567 | + * @param string $name |
| 19568 | + * @param array $options |
| 19569 | + * @param mixed $record |
| 19570 | + * @static |
| 19571 | + */ |
| 19572 | + public static function assertSelectColumnDoesNotHaveOptions($name, $options, $record) |
| 19573 | + { |
| 19574 | + return \Livewire\Testing\TestableLivewire::assertSelectColumnDoesNotHaveOptions($name, $options, $record); |
19430 | 19575 | } |
19431 | 19576 | /** |
19432 | 19577 | * |
|
0 commit comments