Skip to content

Commit

Permalink
Dependency updates (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjustesen authored Nov 2, 2022
1 parent 00f3be1 commit 722e7c1
Show file tree
Hide file tree
Showing 2 changed files with 217 additions and 165 deletions.
90 changes: 71 additions & 19 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 9.36.4.
* Generated for Laravel 9.38.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -5000,7 +5000,7 @@ public static function forgetExtension($name)
/**
* Return all of the created connections.
*
* @return \Illuminate\Database\array<string, \Illuminate\Database\Connection>
* @return array<string, \Illuminate\Database\Connection>
* @static
*/
public static function getConnections()
Expand Down Expand Up @@ -13265,6 +13265,19 @@ public static function pushMiddlewareToGroup($group, $middleware)
{
/** @var \Illuminate\Routing\Router $instance */
return $instance->pushMiddlewareToGroup($group, $middleware);
}
/**
* Remove the given middleware from the specified group.
*
* @param string $group
* @param string $middleware
* @return \Illuminate\Routing\Router
* @static
*/
public static function removeMiddlewareFromGroup($group, $middleware)
{
/** @var \Illuminate\Routing\Router $instance */
return $instance->removeMiddlewareFromGroup($group, $middleware);
}
/**
* Flush the router's middleware groups.
Expand Down Expand Up @@ -14656,6 +14669,18 @@ public static function getHandler()
{
/** @var \Illuminate\Session\Store $instance */
return $instance->getHandler();
}
/**
* Set the underlying session handler implementation.
*
* @param \SessionHandlerInterface $handler
* @return void
* @static
*/
public static function setHandler($handler)
{
/** @var \Illuminate\Session\Store $instance */
$instance->setHandler($handler);
}
/**
* Determine if the session handler needs a request.
Expand Down Expand Up @@ -17113,6 +17138,17 @@ public static function renderTranslation()
*/
class Vite {
/**
* Get the preloaded assets.
*
* @var array
* @static
*/
public static function preloadedAssets()
{
/** @var \Illuminate\Foundation\Vite $instance */
return $instance->preloadedAssets();
}
/**
* Get the Content Security Policy nonce applied to all generated tags.
*
* @return string|null
Expand Down Expand Up @@ -17217,6 +17253,18 @@ public static function useStyleTagAttributes($attributes)
{
/** @var \Illuminate\Foundation\Vite $instance */
return $instance->useStyleTagAttributes($attributes);
}
/**
* Use the given callback to resolve attributes for preload tags.
*
* @param \Illuminate\Foundation\(callable(string, string, ?array, ?array): array)|array $attributes
* @return \Illuminate\Foundation\Vite
* @static
*/
public static function usePreloadTagAttributes($attributes)
{
/** @var \Illuminate\Foundation\Vite $instance */
return $instance->usePreloadTagAttributes($attributes);
}
/**
* Generate React refresh runtime script.
Expand Down Expand Up @@ -17821,7 +17869,7 @@ public static function version()
/**
*
*
* @return \Spatie\FlareClient\array<int, FlareMiddleware|class-string<FlareMiddleware>>
* @return array<int, FlareMiddleware|class-string<FlareMiddleware>>
* @static
*/
public static function getMiddleware()
Expand Down Expand Up @@ -17882,7 +17930,7 @@ public static function registerErrorHandler()
/**
*
*
* @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|\Spatie\FlareClient\array<FlareMiddleware>|\Spatie\FlareClient\class-string<FlareMiddleware> $middleware
* @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|array<FlareMiddleware>|\Spatie\FlareClient\class-string<FlareMiddleware> $middleware
* @return \Spatie\FlareClient\Flare
* @static
*/
Expand All @@ -17894,7 +17942,7 @@ public static function registerMiddleware($middleware)
/**
*
*
* @return \Spatie\FlareClient\array<int,FlareMiddleware|\Spatie\FlareClient\class-string<FlareMiddleware>>
* @return array<int,FlareMiddleware|class-string<FlareMiddleware>>
* @static
*/
public static function getMiddlewares()
Expand Down Expand Up @@ -18054,7 +18102,7 @@ public static function messageLevel($messageLevel)
*
* @param string $groupName
* @param mixed $default
* @return \Spatie\FlareClient\array<int, mixed>
* @return array<int, mixed>
* @static
*/
public static function getGroup($groupName = 'context', $default = [])
Expand Down Expand Up @@ -18501,50 +18549,54 @@ public static function assertHasNoPageActionErrors($keys = [])
/**
*
*
* @see \Filament\Testing\TestsPages::fillForm()
* @see \Filament\Forms\Testing\TestsForms::fillForm()
* @param array $state
* @param string $formName
* @return static
* @static
*/
public static function fillForm($state = [])
public static function fillForm($state = [], $formName = 'form')
{
return \Livewire\Testing\TestableLivewire::fillForm($state);
return \Livewire\Testing\TestableLivewire::fillForm($state, $formName);
}
/**
*
*
* @see \Filament\Testing\TestsPages::assertFormSet()
* @see \Filament\Forms\Testing\TestsForms::assertFormSet()
* @param array $state
* @param string $formName
* @return static
* @static
*/
public static function assertFormSet($state)
public static function assertFormSet($state, $formName = 'form')
{
return \Livewire\Testing\TestableLivewire::assertFormSet($state);
return \Livewire\Testing\TestableLivewire::assertFormSet($state, $formName);
}
/**
*
*
* @see \Filament\Testing\TestsPages::assertHasFormErrors()
* @see \Filament\Forms\Testing\TestsForms::assertHasFormErrors()
* @param array $keys
* @param string $formName
* @return static
* @static
*/
public static function assertHasFormErrors($keys = [])
public static function assertHasFormErrors($keys = [], $formName = 'form')
{
return \Livewire\Testing\TestableLivewire::assertHasFormErrors($keys);
return \Livewire\Testing\TestableLivewire::assertHasFormErrors($keys, $formName);
}
/**
*
*
* @see \Filament\Testing\TestsPages::assertHasNoFormErrors()
* @see \Filament\Forms\Testing\TestsForms::assertHasNoFormErrors()
* @param array $keys
* @param string $formName
* @return static
* @static
*/
public static function assertHasNoFormErrors($keys = [])
public static function assertHasNoFormErrors($keys = [], $formName = 'form')
{
return \Livewire\Testing\TestableLivewire::assertHasNoFormErrors($keys);
return \Livewire\Testing\TestableLivewire::assertHasNoFormErrors($keys, $formName);
}
/**
*
Expand Down Expand Up @@ -21287,7 +21339,7 @@ public static function distinct()
/**
* Set the table which the query is targeting.
*
* @param \Closure|\Illuminate\Database\Query\Builder|string $table
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder|string $table
* @param string|null $as
* @return \Illuminate\Database\Query\Builder
* @static
Expand Down
Loading

0 comments on commit 722e7c1

Please sign in to comment.