|
@@ -4,7 +4,7 @@
|
|
|
|
|
|
/**
|
|
|
* A helper file for Laravel, to provide autocomplete information to your IDE
|
|
|
- * Generated for Laravel 9.37.0.
|
|
|
+ * Generated for Laravel 9.40.1.
|
|
|
*
|
|
|
* This file should not be included in your code, only analyzed by your IDE!
|
|
|
*
|
|
@@ -5000,7 +5000,7 @@
|
|
|
/**
|
|
|
* 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()
|
|
@@ -12923,13 +12923,13 @@
|
|
|
*
|
|
|
* @param array $attributes
|
|
|
* @param \Closure|array|string $routes
|
|
|
- * @return void
|
|
|
+ * @return \Illuminate\Routing\Router
|
|
|
* @static
|
|
|
*/
|
|
|
public static function group($attributes, $routes)
|
|
|
{
|
|
|
/** @var \Illuminate\Routing\Router $instance */
|
|
|
- $instance->group($attributes, $routes);
|
|
|
+ return $instance->group($attributes, $routes);
|
|
|
}
|
|
|
/**
|
|
|
* Merge the given array with the last group stack.
|
|
@@ -13200,6 +13200,19 @@
|
|
|
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.
|
|
|
*
|
|
|
* @return \Illuminate\Routing\Router
|
|
@@ -14591,6 +14604,18 @@
|
|
|
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.
|
|
|
*
|
|
|
* @return bool
|
|
@@ -16740,6 +16765,65 @@
|
|
|
$instance->callCreator($view);
|
|
|
}
|
|
|
/**
|
|
|
+ * Start injecting content into a fragment.
|
|
|
+ *
|
|
|
+ * @param string $fragment
|
|
|
+ * @return void
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function startFragment($fragment)
|
|
|
+ {
|
|
|
+ /** @var \Illuminate\View\Factory $instance */
|
|
|
+ $instance->startFragment($fragment);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Stop injecting content into a fragment.
|
|
|
+ *
|
|
|
+ * @return string
|
|
|
+ * @throws \InvalidArgumentException
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function stopFragment()
|
|
|
+ {
|
|
|
+ /** @var \Illuminate\View\Factory $instance */
|
|
|
+ return $instance->stopFragment();
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Get the contents of a fragment.
|
|
|
+ *
|
|
|
+ * @param string $name
|
|
|
+ * @param string|null $default
|
|
|
+ * @return mixed
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function getFragment($name, $default = null)
|
|
|
+ {
|
|
|
+ /** @var \Illuminate\View\Factory $instance */
|
|
|
+ return $instance->getFragment($name, $default);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Get the entire array of rendered fragments.
|
|
|
+ *
|
|
|
+ * @return array
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function getFragments()
|
|
|
+ {
|
|
|
+ /** @var \Illuminate\View\Factory $instance */
|
|
|
+ return $instance->getFragments();
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Flush all of the fragments.
|
|
|
+ *
|
|
|
+ * @return void
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function flushFragments()
|
|
|
+ {
|
|
|
+ /** @var \Illuminate\View\Factory $instance */
|
|
|
+ $instance->flushFragments();
|
|
|
+ }
|
|
|
+ /**
|
|
|
* Start injecting content into a section.
|
|
|
*
|
|
|
* @param string $section
|
|
@@ -17210,6 +17294,17 @@
|
|
|
return $instance->manifestHash($buildDirectory);
|
|
|
}
|
|
|
/**
|
|
|
+ * Determine if the HMR server is running.
|
|
|
+ *
|
|
|
+ * @return bool
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function isRunningHot()
|
|
|
+ {
|
|
|
+ /** @var \Illuminate\Foundation\Vite $instance */
|
|
|
+ return $instance->isRunningHot();
|
|
|
+ }
|
|
|
+ /**
|
|
|
* Get the Vite tag content as a string of HTML.
|
|
|
*
|
|
|
* @return string
|
|
@@ -18108,7 +18203,7 @@
|
|
|
*
|
|
|
* @param string $header The name of the header to retrieve. Can be HTTP compliant such as
|
|
|
* "User-Agent" or "X-Device-User-Agent" or can be php-esque with the
|
|
|
- * all-caps, HTTP_ prefixed, underscore seperated awesomeness.
|
|
|
+ * all-caps, HTTP_ prefixed, underscore separated awesomeness.
|
|
|
* @return string|null The value of the header.
|
|
|
* @static
|
|
|
*/
|
|
@@ -18782,7 +18877,7 @@
|
|
|
/**
|
|
|
*
|
|
|
*
|
|
|
- * @return \Spatie\FlareClient\array<int, FlareMiddleware|class-string<FlareMiddleware>>
|
|
|
+ * @return array<int, FlareMiddleware|class-string<FlareMiddleware>>
|
|
|
* @static
|
|
|
*/
|
|
|
public static function getMiddleware()
|
|
@@ -18843,7 +18938,7 @@
|
|
|
/**
|
|
|
*
|
|
|
*
|
|
|
- * @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
|
|
|
*/
|
|
@@ -18855,7 +18950,7 @@
|
|
|
/**
|
|
|
*
|
|
|
*
|
|
|
- * @return \Spatie\FlareClient\array<int,FlareMiddleware|\Spatie\FlareClient\class-string<FlareMiddleware>>
|
|
|
+ * @return array<int,FlareMiddleware|class-string<FlareMiddleware>>
|
|
|
* @static
|
|
|
*/
|
|
|
public static function getMiddlewares()
|
|
@@ -19015,7 +19110,7 @@
|
|
|
*
|
|
|
* @param string $groupName
|
|
|
* @param mixed $default
|
|
|
- * @return \Spatie\FlareClient\array<int, mixed>
|
|
|
+ * @return array<int, mixed>
|
|
|
* @static
|
|
|
*/
|
|
|
public static function getGroup($groupName = 'context', $default = [])
|