Skip to content

Commit bddf425

Browse files
authored
updated composer dependencies (alexjustesen#169)
1 parent 73ba1c1 commit bddf425

File tree

2 files changed

+238
-89
lines changed

2 files changed

+238
-89
lines changed

_ide_helper.php

Lines changed: 147 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* 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.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -9213,7 +9213,7 @@ public static function flushMacros()
92139213
*
92149214
* @method static mixed reset(array $credentials, \Closure $callback)
92159215
* @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)
92179217
* @method static string createToken(\Illuminate\Contracts\Auth\CanResetPassword $user)
92189218
* @method static void deleteToken(\Illuminate\Contracts\Auth\CanResetPassword $user)
92199219
* @method static bool tokenExists(\Illuminate\Contracts\Auth\CanResetPassword $user, string $token)
@@ -12109,6 +12109,20 @@ public static function missing($key)
1210912109
{
1211012110
/** @var \Illuminate\Http\Request $instance */
1211112111
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);
1211212126
}
1211312127
/**
1211412128
* Get the keys for all of the input and files.
@@ -17253,6 +17267,18 @@ public static function withEntryPoints($entryPoints)
1725317267
{
1725417268
/** @var \Illuminate\Foundation\Vite $instance */
1725517269
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);
1725617282
}
1725717283
/**
1725817284
* Get the Vite "hot" file path.
@@ -17359,6 +17385,17 @@ public static function manifestHash($buildDirectory = null)
1735917385
{
1736017386
/** @var \Illuminate\Foundation\Vite $instance */
1736117387
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();
1736217399
}
1736317400
/**
1736417401
* Get the Vite tag content as a string of HTML.
@@ -19427,6 +19464,114 @@ public static function assertTableColumnStateSet($name, $value, $record)
1942719464
public static function assertTableColumnStateNotSet($name, $value, $record)
1942819465
{
1942919466
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);
1943019575
}
1943119576
/**
1943219577
*

0 commit comments

Comments
 (0)