Skip to content

Commit 722e7c1

Browse files
authored
Dependency updates (alexjustesen#105)
1 parent 00f3be1 commit 722e7c1

File tree

2 files changed

+217
-165
lines changed

2 files changed

+217
-165
lines changed

_ide_helper.php

Lines changed: 71 additions & 19 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.36.4.
7+
* Generated for Laravel 9.38.0.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -5000,7 +5000,7 @@ public static function forgetExtension($name)
50005000
/**
50015001
* Return all of the created connections.
50025002
*
5003-
* @return \Illuminate\Database\array<string, \Illuminate\Database\Connection>
5003+
* @return array<string, \Illuminate\Database\Connection>
50045004
* @static
50055005
*/
50065006
public static function getConnections()
@@ -13265,6 +13265,19 @@ public static function pushMiddlewareToGroup($group, $middleware)
1326513265
{
1326613266
/** @var \Illuminate\Routing\Router $instance */
1326713267
return $instance->pushMiddlewareToGroup($group, $middleware);
13268+
}
13269+
/**
13270+
* Remove the given middleware from the specified group.
13271+
*
13272+
* @param string $group
13273+
* @param string $middleware
13274+
* @return \Illuminate\Routing\Router
13275+
* @static
13276+
*/
13277+
public static function removeMiddlewareFromGroup($group, $middleware)
13278+
{
13279+
/** @var \Illuminate\Routing\Router $instance */
13280+
return $instance->removeMiddlewareFromGroup($group, $middleware);
1326813281
}
1326913282
/**
1327013283
* Flush the router's middleware groups.
@@ -14656,6 +14669,18 @@ public static function getHandler()
1465614669
{
1465714670
/** @var \Illuminate\Session\Store $instance */
1465814671
return $instance->getHandler();
14672+
}
14673+
/**
14674+
* Set the underlying session handler implementation.
14675+
*
14676+
* @param \SessionHandlerInterface $handler
14677+
* @return void
14678+
* @static
14679+
*/
14680+
public static function setHandler($handler)
14681+
{
14682+
/** @var \Illuminate\Session\Store $instance */
14683+
$instance->setHandler($handler);
1465914684
}
1466014685
/**
1466114686
* Determine if the session handler needs a request.
@@ -17113,6 +17138,17 @@ public static function renderTranslation()
1711317138
*/
1711417139
class Vite {
1711517140
/**
17141+
* Get the preloaded assets.
17142+
*
17143+
* @var array
17144+
* @static
17145+
*/
17146+
public static function preloadedAssets()
17147+
{
17148+
/** @var \Illuminate\Foundation\Vite $instance */
17149+
return $instance->preloadedAssets();
17150+
}
17151+
/**
1711617152
* Get the Content Security Policy nonce applied to all generated tags.
1711717153
*
1711817154
* @return string|null
@@ -17217,6 +17253,18 @@ public static function useStyleTagAttributes($attributes)
1721717253
{
1721817254
/** @var \Illuminate\Foundation\Vite $instance */
1721917255
return $instance->useStyleTagAttributes($attributes);
17256+
}
17257+
/**
17258+
* Use the given callback to resolve attributes for preload tags.
17259+
*
17260+
* @param \Illuminate\Foundation\(callable(string, string, ?array, ?array): array)|array $attributes
17261+
* @return \Illuminate\Foundation\Vite
17262+
* @static
17263+
*/
17264+
public static function usePreloadTagAttributes($attributes)
17265+
{
17266+
/** @var \Illuminate\Foundation\Vite $instance */
17267+
return $instance->usePreloadTagAttributes($attributes);
1722017268
}
1722117269
/**
1722217270
* Generate React refresh runtime script.
@@ -17821,7 +17869,7 @@ public static function version()
1782117869
/**
1782217870
*
1782317871
*
17824-
* @return \Spatie\FlareClient\array<int, FlareMiddleware|class-string<FlareMiddleware>>
17872+
* @return array<int, FlareMiddleware|class-string<FlareMiddleware>>
1782517873
* @static
1782617874
*/
1782717875
public static function getMiddleware()
@@ -17882,7 +17930,7 @@ public static function registerErrorHandler()
1788217930
/**
1788317931
*
1788417932
*
17885-
* @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|\Spatie\FlareClient\array<FlareMiddleware>|\Spatie\FlareClient\class-string<FlareMiddleware> $middleware
17933+
* @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|array<FlareMiddleware>|\Spatie\FlareClient\class-string<FlareMiddleware> $middleware
1788617934
* @return \Spatie\FlareClient\Flare
1788717935
* @static
1788817936
*/
@@ -17894,7 +17942,7 @@ public static function registerMiddleware($middleware)
1789417942
/**
1789517943
*
1789617944
*
17897-
* @return \Spatie\FlareClient\array<int,FlareMiddleware|\Spatie\FlareClient\class-string<FlareMiddleware>>
17945+
* @return array<int,FlareMiddleware|class-string<FlareMiddleware>>
1789817946
* @static
1789917947
*/
1790017948
public static function getMiddlewares()
@@ -18054,7 +18102,7 @@ public static function messageLevel($messageLevel)
1805418102
*
1805518103
* @param string $groupName
1805618104
* @param mixed $default
18057-
* @return \Spatie\FlareClient\array<int, mixed>
18105+
* @return array<int, mixed>
1805818106
* @static
1805918107
*/
1806018108
public static function getGroup($groupName = 'context', $default = [])
@@ -18501,50 +18549,54 @@ public static function assertHasNoPageActionErrors($keys = [])
1850118549
/**
1850218550
*
1850318551
*
18504-
* @see \Filament\Testing\TestsPages::fillForm()
18552+
* @see \Filament\Forms\Testing\TestsForms::fillForm()
1850518553
* @param array $state
18554+
* @param string $formName
1850618555
* @return static
1850718556
* @static
1850818557
*/
18509-
public static function fillForm($state = [])
18558+
public static function fillForm($state = [], $formName = 'form')
1851018559
{
18511-
return \Livewire\Testing\TestableLivewire::fillForm($state);
18560+
return \Livewire\Testing\TestableLivewire::fillForm($state, $formName);
1851218561
}
1851318562
/**
1851418563
*
1851518564
*
18516-
* @see \Filament\Testing\TestsPages::assertFormSet()
18565+
* @see \Filament\Forms\Testing\TestsForms::assertFormSet()
1851718566
* @param array $state
18567+
* @param string $formName
1851818568
* @return static
1851918569
* @static
1852018570
*/
18521-
public static function assertFormSet($state)
18571+
public static function assertFormSet($state, $formName = 'form')
1852218572
{
18523-
return \Livewire\Testing\TestableLivewire::assertFormSet($state);
18573+
return \Livewire\Testing\TestableLivewire::assertFormSet($state, $formName);
1852418574
}
1852518575
/**
1852618576
*
1852718577
*
18528-
* @see \Filament\Testing\TestsPages::assertHasFormErrors()
18578+
* @see \Filament\Forms\Testing\TestsForms::assertHasFormErrors()
1852918579
* @param array $keys
18580+
* @param string $formName
1853018581
* @return static
1853118582
* @static
1853218583
*/
18533-
public static function assertHasFormErrors($keys = [])
18584+
public static function assertHasFormErrors($keys = [], $formName = 'form')
1853418585
{
18535-
return \Livewire\Testing\TestableLivewire::assertHasFormErrors($keys);
18586+
return \Livewire\Testing\TestableLivewire::assertHasFormErrors($keys, $formName);
1853618587
}
1853718588
/**
1853818589
*
1853918590
*
18540-
* @see \Filament\Testing\TestsPages::assertHasNoFormErrors()
18591+
* @see \Filament\Forms\Testing\TestsForms::assertHasNoFormErrors()
1854118592
* @param array $keys
18593+
* @param string $formName
1854218594
* @return static
1854318595
* @static
1854418596
*/
18545-
public static function assertHasNoFormErrors($keys = [])
18597+
public static function assertHasNoFormErrors($keys = [], $formName = 'form')
1854618598
{
18547-
return \Livewire\Testing\TestableLivewire::assertHasNoFormErrors($keys);
18599+
return \Livewire\Testing\TestableLivewire::assertHasNoFormErrors($keys, $formName);
1854818600
}
1854918601
/**
1855018602
*
@@ -21287,7 +21339,7 @@ public static function distinct()
2128721339
/**
2128821340
* Set the table which the query is targeting.
2128921341
*
21290-
* @param \Closure|\Illuminate\Database\Query\Builder|string $table
21342+
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder|string $table
2129121343
* @param string|null $as
2129221344
* @return \Illuminate\Database\Query\Builder
2129321345
* @static

0 commit comments

Comments
 (0)