Inicio de sesion y probando con octane + frankenphp
This commit is contained in:
352
_ide_helper.php
352
_ide_helper.php
@@ -22909,6 +22909,161 @@ namespace Barryvdh\Debugbar\Facades {
|
||||
}
|
||||
}
|
||||
|
||||
namespace Laravel\Octane\Facades {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Laravel\Octane\Octane
|
||||
*/
|
||||
class Octane {
|
||||
/**
|
||||
* Get a Swoole table instance.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function table($table)
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->table($table);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format an exception to a string that should be returned to the client.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function formatExceptionForClient($e, $debug = false)
|
||||
{
|
||||
return \Laravel\Octane\Octane::formatExceptionForClient($e, $debug);
|
||||
}
|
||||
|
||||
/**
|
||||
* Write an error message to STDERR or to the SAPI logger if not in CLI mode.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function writeError($message)
|
||||
{
|
||||
return \Laravel\Octane\Octane::writeError($message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Concurrently resolve the given callbacks via background tasks, returning the results.
|
||||
*
|
||||
* Results will be keyed by their given keys - if a task did not finish, the tasks value will be "false".
|
||||
*
|
||||
* @return array
|
||||
* @throws \Laravel\Octane\Exceptions\TaskException
|
||||
* @throws \Laravel\Octane\Exceptions\TaskTimeoutException
|
||||
* @static
|
||||
*/
|
||||
public static function concurrently($tasks, $waitMilliseconds = 3000)
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->concurrently($tasks, $waitMilliseconds);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the task dispatcher.
|
||||
*
|
||||
* @return \Laravel\Octane\Contracts\DispatchesTasks
|
||||
* @static
|
||||
*/
|
||||
public static function tasks()
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->tasks();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the listeners that will prepare the Laravel application for a new request.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function prepareApplicationForNextRequest()
|
||||
{
|
||||
return \Laravel\Octane\Octane::prepareApplicationForNextRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the listeners that will prepare the Laravel application for a new operation.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function prepareApplicationForNextOperation()
|
||||
{
|
||||
return \Laravel\Octane\Octane::prepareApplicationForNextOperation();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the container bindings / services that should be pre-resolved by default.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function defaultServicesToWarm()
|
||||
{
|
||||
return \Laravel\Octane\Octane::defaultServicesToWarm();
|
||||
}
|
||||
|
||||
/**
|
||||
* Register a Octane route.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function route($method, $uri, $callback)
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->route($method, $uri, $callback);
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine if a route exists for the given method and URI.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function hasRouteFor($method, $uri)
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->hasRouteFor($method, $uri);
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke the route for the given method and URI.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function invokeRoute($request, $method, $uri)
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->invokeRoute($request, $method, $uri);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the registered Octane routes.
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function getRoutes()
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->getRoutes();
|
||||
}
|
||||
|
||||
/**
|
||||
* Register a callback to be called every N seconds.
|
||||
*
|
||||
* @return \Laravel\Octane\Swoole\InvokeTickCallable
|
||||
* @static
|
||||
*/
|
||||
public static function tick($key, $callback, $seconds = 1, $immediate = true)
|
||||
{
|
||||
/** @var \Laravel\Octane\Octane $instance */
|
||||
return $instance->tick($key, $callback, $seconds, $immediate);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
namespace Livewire {
|
||||
/**
|
||||
*
|
||||
@@ -22916,28 +23071,6 @@ namespace Livewire {
|
||||
* @see \Livewire\LivewireManager
|
||||
*/
|
||||
class Livewire {
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function mount($name, $params = [], $key = null)
|
||||
{
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
return $instance->mount($name, $params, $key);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function update($snapshot, $diff, $calls)
|
||||
{
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
return $instance->update($snapshot, $diff, $calls);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
@@ -22945,8 +23078,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function setProvider($provider)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->setProvider($provider);
|
||||
}
|
||||
|
||||
@@ -22957,8 +23089,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function provide($callback)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->provide($callback);
|
||||
}
|
||||
|
||||
@@ -22969,8 +23100,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function component($name, $class = null)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->component($name, $class);
|
||||
}
|
||||
|
||||
@@ -22981,8 +23111,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function componentHook($hook)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->componentHook($hook);
|
||||
}
|
||||
|
||||
@@ -22993,8 +23122,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function propertySynthesizer($synth)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->propertySynthesizer($synth);
|
||||
}
|
||||
|
||||
@@ -23005,8 +23133,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function directive($name, $callback)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->directive($name, $callback);
|
||||
}
|
||||
|
||||
@@ -23017,8 +23144,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function precompiler($callback)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->precompiler($callback);
|
||||
}
|
||||
|
||||
@@ -23029,8 +23155,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function new($name, $id = null)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->new($name, $id);
|
||||
}
|
||||
|
||||
@@ -23041,8 +23166,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function isDiscoverable($componentNameOrClass)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->isDiscoverable($componentNameOrClass);
|
||||
}
|
||||
|
||||
@@ -23053,11 +23177,21 @@ namespace Livewire {
|
||||
*/
|
||||
public static function resolveMissingComponent($resolver)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->resolveMissingComponent($resolver);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function mount($name, $params = [], $key = null)
|
||||
{
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->mount($name, $params, $key);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
@@ -23065,8 +23199,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function snapshot($component)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->snapshot($component);
|
||||
}
|
||||
|
||||
@@ -23077,8 +23210,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function fromSnapshot($snapshot)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->fromSnapshot($snapshot);
|
||||
}
|
||||
|
||||
@@ -23089,8 +23221,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function listen($eventName, $callback)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->listen($eventName, $callback);
|
||||
}
|
||||
|
||||
@@ -23101,11 +23232,21 @@ namespace Livewire {
|
||||
*/
|
||||
public static function current()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->current();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function update($snapshot, $diff, $calls)
|
||||
{
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->update($snapshot, $diff, $calls);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
@@ -23113,8 +23254,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function updateProperty($component, $path, $value)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->updateProperty($component, $path, $value);
|
||||
}
|
||||
|
||||
@@ -23125,8 +23265,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function isLivewireRequest()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->isLivewireRequest();
|
||||
}
|
||||
|
||||
@@ -23137,8 +23276,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function componentHasBeenRendered()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->componentHasBeenRendered();
|
||||
}
|
||||
|
||||
@@ -23149,8 +23287,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function forceAssetInjection()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->forceAssetInjection();
|
||||
}
|
||||
|
||||
@@ -23161,8 +23298,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function setUpdateRoute($callback)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->setUpdateRoute($callback);
|
||||
}
|
||||
|
||||
@@ -23173,8 +23309,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function getUpdateUri()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->getUpdateUri();
|
||||
}
|
||||
|
||||
@@ -23185,8 +23320,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function setScriptRoute($callback)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->setScriptRoute($callback);
|
||||
}
|
||||
|
||||
@@ -23197,8 +23331,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function useScriptTagAttributes($attributes)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->useScriptTagAttributes($attributes);
|
||||
}
|
||||
|
||||
@@ -23209,8 +23342,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function withUrlParams($params)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->withUrlParams($params);
|
||||
}
|
||||
|
||||
@@ -23221,8 +23353,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function withQueryParams($params)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->withQueryParams($params);
|
||||
}
|
||||
|
||||
@@ -23233,8 +23364,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function withCookie($name, $value)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->withCookie($name, $value);
|
||||
}
|
||||
|
||||
@@ -23245,8 +23375,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function withCookies($cookies)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->withCookies($cookies);
|
||||
}
|
||||
|
||||
@@ -23257,8 +23386,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function withHeaders($headers)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->withHeaders($headers);
|
||||
}
|
||||
|
||||
@@ -23269,8 +23397,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function withoutLazyLoading()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->withoutLazyLoading();
|
||||
}
|
||||
|
||||
@@ -23281,8 +23408,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function test($name, $params = [])
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->test($name, $params);
|
||||
}
|
||||
|
||||
@@ -23293,8 +23419,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function visit($name)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->visit($name);
|
||||
}
|
||||
|
||||
@@ -23305,8 +23430,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function actingAs($user, $driver = null)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->actingAs($user, $driver);
|
||||
}
|
||||
|
||||
@@ -23317,8 +23441,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function isRunningServerless()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->isRunningServerless();
|
||||
}
|
||||
|
||||
@@ -23329,8 +23452,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function addPersistentMiddleware($middleware)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->addPersistentMiddleware($middleware);
|
||||
}
|
||||
|
||||
@@ -23341,8 +23463,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function setPersistentMiddleware($middleware)
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->setPersistentMiddleware($middleware);
|
||||
}
|
||||
|
||||
@@ -23353,8 +23474,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function getPersistentMiddleware()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->getPersistentMiddleware();
|
||||
}
|
||||
|
||||
@@ -23365,8 +23485,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function flushState()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->flushState();
|
||||
}
|
||||
|
||||
@@ -23377,8 +23496,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function originalUrl()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->originalUrl();
|
||||
}
|
||||
|
||||
@@ -23389,8 +23507,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function originalPath()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->originalPath();
|
||||
}
|
||||
|
||||
@@ -23401,8 +23518,7 @@ namespace Livewire {
|
||||
*/
|
||||
public static function originalMethod()
|
||||
{
|
||||
//Method inherited from \Livewire\LivewireManager
|
||||
/** @var \Livewire\Volt\LivewireManager $instance */
|
||||
/** @var \Livewire\LivewireManager $instance */
|
||||
return $instance->originalMethod();
|
||||
}
|
||||
|
||||
@@ -23735,41 +23851,6 @@ namespace Illuminate\View {
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Testing {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @template TResponse of \Symfony\Component\HttpFoundation\Response
|
||||
* @mixin \Illuminate\Http\Response
|
||||
*/
|
||||
class TestResponse {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Livewire\Volt\VoltServiceProvider::registerTestingMacros()
|
||||
* @param mixed $component
|
||||
* @static
|
||||
*/
|
||||
public static function assertSeeVolt($component)
|
||||
{
|
||||
return \Illuminate\Testing\TestResponse::assertSeeVolt($component);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Livewire\Volt\VoltServiceProvider::registerTestingMacros()
|
||||
* @param mixed $component
|
||||
* @static
|
||||
*/
|
||||
public static function assertDontSeeVolt($component)
|
||||
{
|
||||
return \Illuminate\Testing\TestResponse::assertDontSeeVolt($component);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
namespace {
|
||||
class App extends \Illuminate\Support\Facades\App {}
|
||||
@@ -28131,6 +28212,7 @@ namespace {
|
||||
class View extends \Illuminate\Support\Facades\View {}
|
||||
class Vite extends \Illuminate\Support\Facades\Vite {}
|
||||
class Debugbar extends \Barryvdh\Debugbar\Facades\Debugbar {}
|
||||
class Octane extends \Laravel\Octane\Facades\Octane {}
|
||||
class Livewire extends \Livewire\Livewire {}
|
||||
class TallStackUi extends \TallStackUi\Facades\TallStackUi {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user