44
55/**
66 * A helper file for Laravel, to provide autocomplete information to your IDE
7- * Generated for Laravel 9.44 .0.
7+ * Generated for Laravel 9.46 .0.
88 *
99 * This file should not be included in your code, only analyzed by your IDE!
1010 *
@@ -2575,6 +2575,19 @@ public static function getClassComponentAliases()
25752575 {
25762576 /** @var \Illuminate\View\Compilers\BladeCompiler $instance */
25772577 return $instance->getClassComponentAliases();
2578+ }
2579+ /**
2580+ * Register a new anonymous component path.
2581+ *
2582+ * @param string $path
2583+ * @param string|null $prefix
2584+ * @return void
2585+ * @static
2586+ */
2587+ public static function anonymousComponentPath($path, $prefix = null)
2588+ {
2589+ /** @var \Illuminate\View\Compilers\BladeCompiler $instance */
2590+ $instance->anonymousComponentPath($path, $prefix);
25782591 }
25792592 /**
25802593 * Register an anonymous component namespace.
@@ -2601,6 +2614,17 @@ public static function componentNamespace($namespace, $prefix)
26012614 {
26022615 /** @var \Illuminate\View\Compilers\BladeCompiler $instance */
26032616 $instance->componentNamespace($namespace, $prefix);
2617+ }
2618+ /**
2619+ * Get the registered anonymous component paths.
2620+ *
2621+ * @return array
2622+ * @static
2623+ */
2624+ public static function getAnonymousComponentPaths()
2625+ {
2626+ /** @var \Illuminate\View\Compilers\BladeCompiler $instance */
2627+ return $instance->getAnonymousComponentPaths();
26042628 }
26052629 /**
26062630 * Get the registered anonymous component namespaces.
@@ -3559,6 +3583,7 @@ public static function recordPendingBatch($pendingBatch)
35593583 *
35603584 *
35613585 * @see \Illuminate\Cache\CacheManager
3586+ * @mixin \Illuminate\Cache\Repository
35623587 */
35633588 class Cache {
35643589 /**
@@ -3671,7 +3696,7 @@ public static function extend($driver, $callback)
36713696 /**
36723697 * Determine if an item exists in the cache.
36733698 *
3674- * @param string $key
3699+ * @param array| string $key
36753700 * @return bool
36763701 * @static
36773702 */
@@ -3695,9 +3720,10 @@ public static function missing($key)
36953720 /**
36963721 * Retrieve an item from the cache by key.
36973722 *
3723+ * @template TCacheValue
36983724 * @param array|string $key
3699- * @param mixed $default
3700- * @return mixed
3725+ * @param \Illuminate\Cache\TCacheValue|\Illuminate\Cache\(\Closure(): TCacheValue) $default
3726+ * @return \Illuminate\Cache\(TCacheValue is null ? mixed : TCacheValue)
37013727 * @static
37023728 */
37033729 public static function get($key, $default = null)
@@ -3739,9 +3765,10 @@ public static function getMultiple($keys, $default = null)
37393765 /**
37403766 * Retrieve an item from the cache and delete it.
37413767 *
3742- * @param string $key
3743- * @param mixed $default
3744- * @return mixed
3768+ * @template TCacheValue
3769+ * @param array|string $key
3770+ * @param \Illuminate\Cache\TCacheValue|\Illuminate\Cache\(\Closure(): TCacheValue) $default
3771+ * @return \Illuminate\Cache\(TCacheValue is null ? mixed : TCacheValue)
37453772 * @static
37463773 */
37473774 public static function pull($key, $default = null)
@@ -3870,10 +3897,11 @@ public static function forever($key, $value)
38703897 /**
38713898 * Get an item from the cache, or execute the given Closure and store the result.
38723899 *
3900+ * @template TCacheValue
38733901 * @param string $key
38743902 * @param \Closure|\DateTimeInterface|\DateInterval|int|null $ttl
3875- * @param \Closure $callback
3876- * @return mixed
3903+ * @param \Closure(): TCacheValue $callback
3904+ * @return \Illuminate\Cache\TCacheValue
38773905 * @static
38783906 */
38793907 public static function remember($key, $ttl, $callback)
@@ -3884,9 +3912,10 @@ public static function remember($key, $ttl, $callback)
38843912 /**
38853913 * Get an item from the cache, or execute the given Closure and store the result forever.
38863914 *
3915+ * @template TCacheValue
38873916 * @param string $key
3888- * @param \Closure $callback
3889- * @return mixed
3917+ * @param \Closure(): TCacheValue $callback
3918+ * @return \Illuminate\Cache\TCacheValue
38903919 * @static
38913920 */
38923921 public static function sear($key, $callback)
@@ -3897,9 +3926,10 @@ public static function sear($key, $callback)
38973926 /**
38983927 * Get an item from the cache, or execute the given Closure and store the result forever.
38993928 *
3929+ * @template TCacheValue
39003930 * @param string $key
3901- * @param \Closure $callback
3902- * @return mixed
3931+ * @param \Closure(): TCacheValue $callback
3932+ * @return \Illuminate\Cache\TCacheValue
39033933 * @static
39043934 */
39053935 public static function rememberForever($key, $callback)
@@ -7610,18 +7640,18 @@ public static function forgetDrivers()
76107640 * @method static \Illuminate\Http\Client\PendingRequest withMiddleware(callable $middleware)
76117641 * @method static \Illuminate\Http\Client\PendingRequest beforeSending(callable $callback)
76127642 * @method static \Illuminate\Http\Client\PendingRequest throw(callable|null $callback = null)
7613- * @method static \Illuminate\Http\Client\PendingRequest throwIf(callable|bool $condition)
7643+ * @method static \Illuminate\Http\Client\PendingRequest throwIf(callable|bool $condition, callable|null $throwCallback = null )
76147644 * @method static \Illuminate\Http\Client\PendingRequest throwUnless(bool $condition)
76157645 * @method static \Illuminate\Http\Client\PendingRequest dump()
76167646 * @method static \Illuminate\Http\Client\PendingRequest dd()
7617- * @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface get(string $url, array|string|null $query = null)
7618- * @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface head(string $url, array|string|null $query = null)
7619- * @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface post(string $url, array $data = [])
7620- * @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface patch(string $url, array $data = [])
7621- * @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface put(string $url, array $data = [])
7622- * @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface delete(string $url, array $data = [])
7647+ * @method static \Illuminate\Http\Client\Response get(string $url, array|string|null $query = null)
7648+ * @method static \Illuminate\Http\Client\Response head(string $url, array|string|null $query = null)
7649+ * @method static \Illuminate\Http\Client\Response post(string $url, array $data = [])
7650+ * @method static \Illuminate\Http\Client\Response patch(string $url, array $data = [])
7651+ * @method static \Illuminate\Http\Client\Response put(string $url, array $data = [])
7652+ * @method static \Illuminate\Http\Client\Response delete(string $url, array $data = [])
76237653 * @method static array pool(callable $callback)
7624- * @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface send(string $method, string $url, array $options = [])
7654+ * @method static \Illuminate\Http\Client\Response send(string $method, string $url, array $options = [])
76257655 * @method static \GuzzleHttp\Client buildClient()
76267656 * @method static \GuzzleHttp\Client createClient(\GuzzleHttp\HandlerStack $handlerStack)
76277657 * @method static \GuzzleHttp\HandlerStack buildHandlerStack()
@@ -12863,6 +12893,7 @@ public static function flushMacros()
1286312893 * @method static \Illuminate\Routing\RouteRegistrar whereAlpha(array|string $parameters)
1286412894 * @method static \Illuminate\Routing\RouteRegistrar whereAlphaNumeric(array|string $parameters)
1286512895 * @method static \Illuminate\Routing\RouteRegistrar whereNumber(array|string $parameters)
12896+ * @method static \Illuminate\Routing\RouteRegistrar whereUlid(array|string $parameters)
1286612897 * @method static \Illuminate\Routing\RouteRegistrar whereUuid(array|string $parameters)
1286712898 * @method static \Illuminate\Routing\RouteRegistrar whereIn(array|string $parameters, array $values)
1286812899 * @method static \Illuminate\Routing\RouteRegistrar as(string $value)
@@ -17535,7 +17566,7 @@ public static function useStyleTagAttributes($attributes)
1753517566 /**
1753617567 * Use the given callback to resolve attributes for preload tags.
1753717568 *
17538- * @param \Illuminate\Foundation\(callable(string, string, ?array, ?array): array)|array $attributes
17569+ * @param \Illuminate\Foundation\(callable(string, string, ?array, ?array): array|false )|array|false $attributes
1753917570 * @return \Illuminate\Foundation\Vite
1754017571 * @static
1754117572 */
@@ -23015,7 +23046,7 @@ public static function orderByDesc($column)
2301523046 /**
2301623047 * Put the query's results in random order.
2301723048 *
23018- * @param string $seed
23049+ * @param string|int $seed
2301923050 * @return \Illuminate\Database\Query\Builder
2302023051 * @static
2302123052 */
0 commit comments