Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 54 additions & 23 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.44.0.
* Generated for Laravel 9.46.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -2575,6 +2575,19 @@ public static function getClassComponentAliases()
{
/** @var \Illuminate\View\Compilers\BladeCompiler $instance */
return $instance->getClassComponentAliases();
}
/**
* Register a new anonymous component path.
*
* @param string $path
* @param string|null $prefix
* @return void
* @static
*/
public static function anonymousComponentPath($path, $prefix = null)
{
/** @var \Illuminate\View\Compilers\BladeCompiler $instance */
$instance->anonymousComponentPath($path, $prefix);
}
/**
* Register an anonymous component namespace.
Expand All @@ -2601,6 +2614,17 @@ public static function componentNamespace($namespace, $prefix)
{
/** @var \Illuminate\View\Compilers\BladeCompiler $instance */
$instance->componentNamespace($namespace, $prefix);
}
/**
* Get the registered anonymous component paths.
*
* @return array
* @static
*/
public static function getAnonymousComponentPaths()
{
/** @var \Illuminate\View\Compilers\BladeCompiler $instance */
return $instance->getAnonymousComponentPaths();
}
/**
* Get the registered anonymous component namespaces.
Expand Down Expand Up @@ -3559,6 +3583,7 @@ public static function recordPendingBatch($pendingBatch)
*
*
* @see \Illuminate\Cache\CacheManager
* @mixin \Illuminate\Cache\Repository
*/
class Cache {
/**
Expand Down Expand Up @@ -3671,7 +3696,7 @@ public static function extend($driver, $callback)
/**
* Determine if an item exists in the cache.
*
* @param string $key
* @param array|string $key
* @return bool
* @static
*/
Expand All @@ -3695,9 +3720,10 @@ public static function missing($key)
/**
* Retrieve an item from the cache by key.
*
* @template TCacheValue
* @param array|string $key
* @param mixed $default
* @return mixed
* @param \Illuminate\Cache\TCacheValue|\Illuminate\Cache\(\Closure(): TCacheValue) $default
* @return \Illuminate\Cache\(TCacheValue is null ? mixed : TCacheValue)
* @static
*/
public static function get($key, $default = null)
Expand Down Expand Up @@ -3739,9 +3765,10 @@ public static function getMultiple($keys, $default = null)
/**
* Retrieve an item from the cache and delete it.
*
* @param string $key
* @param mixed $default
* @return mixed
* @template TCacheValue
* @param array|string $key
* @param \Illuminate\Cache\TCacheValue|\Illuminate\Cache\(\Closure(): TCacheValue) $default
* @return \Illuminate\Cache\(TCacheValue is null ? mixed : TCacheValue)
* @static
*/
public static function pull($key, $default = null)
Expand Down Expand Up @@ -3870,10 +3897,11 @@ public static function forever($key, $value)
/**
* Get an item from the cache, or execute the given Closure and store the result.
*
* @template TCacheValue
* @param string $key
* @param \Closure|\DateTimeInterface|\DateInterval|int|null $ttl
* @param \Closure $callback
* @return mixed
* @param \Closure(): TCacheValue $callback
* @return \Illuminate\Cache\TCacheValue
* @static
*/
public static function remember($key, $ttl, $callback)
Expand All @@ -3884,9 +3912,10 @@ public static function remember($key, $ttl, $callback)
/**
* Get an item from the cache, or execute the given Closure and store the result forever.
*
* @template TCacheValue
* @param string $key
* @param \Closure $callback
* @return mixed
* @param \Closure(): TCacheValue $callback
* @return \Illuminate\Cache\TCacheValue
* @static
*/
public static function sear($key, $callback)
Expand All @@ -3897,9 +3926,10 @@ public static function sear($key, $callback)
/**
* Get an item from the cache, or execute the given Closure and store the result forever.
*
* @template TCacheValue
* @param string $key
* @param \Closure $callback
* @return mixed
* @param \Closure(): TCacheValue $callback
* @return \Illuminate\Cache\TCacheValue
* @static
*/
public static function rememberForever($key, $callback)
Expand Down Expand Up @@ -7610,18 +7640,18 @@ public static function forgetDrivers()
* @method static \Illuminate\Http\Client\PendingRequest withMiddleware(callable $middleware)
* @method static \Illuminate\Http\Client\PendingRequest beforeSending(callable $callback)
* @method static \Illuminate\Http\Client\PendingRequest throw(callable|null $callback = null)
* @method static \Illuminate\Http\Client\PendingRequest throwIf(callable|bool $condition)
* @method static \Illuminate\Http\Client\PendingRequest throwIf(callable|bool $condition, callable|null $throwCallback = null)
* @method static \Illuminate\Http\Client\PendingRequest throwUnless(bool $condition)
* @method static \Illuminate\Http\Client\PendingRequest dump()
* @method static \Illuminate\Http\Client\PendingRequest dd()
* @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface get(string $url, array|string|null $query = null)
* @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface head(string $url, array|string|null $query = null)
* @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface post(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface patch(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface put(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface delete(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response get(string $url, array|string|null $query = null)
* @method static \Illuminate\Http\Client\Response head(string $url, array|string|null $query = null)
* @method static \Illuminate\Http\Client\Response post(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response patch(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response put(string $url, array $data = [])
* @method static \Illuminate\Http\Client\Response delete(string $url, array $data = [])
* @method static array pool(callable $callback)
* @method static \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface send(string $method, string $url, array $options = [])
* @method static \Illuminate\Http\Client\Response send(string $method, string $url, array $options = [])
* @method static \GuzzleHttp\Client buildClient()
* @method static \GuzzleHttp\Client createClient(\GuzzleHttp\HandlerStack $handlerStack)
* @method static \GuzzleHttp\HandlerStack buildHandlerStack()
Expand Down Expand Up @@ -12863,6 +12893,7 @@ public static function flushMacros()
* @method static \Illuminate\Routing\RouteRegistrar whereAlpha(array|string $parameters)
* @method static \Illuminate\Routing\RouteRegistrar whereAlphaNumeric(array|string $parameters)
* @method static \Illuminate\Routing\RouteRegistrar whereNumber(array|string $parameters)
* @method static \Illuminate\Routing\RouteRegistrar whereUlid(array|string $parameters)
* @method static \Illuminate\Routing\RouteRegistrar whereUuid(array|string $parameters)
* @method static \Illuminate\Routing\RouteRegistrar whereIn(array|string $parameters, array $values)
* @method static \Illuminate\Routing\RouteRegistrar as(string $value)
Expand Down Expand Up @@ -17535,7 +17566,7 @@ public static function useStyleTagAttributes($attributes)
/**
* Use the given callback to resolve attributes for preload tags.
*
* @param \Illuminate\Foundation\(callable(string, string, ?array, ?array): array)|array $attributes
* @param \Illuminate\Foundation\(callable(string, string, ?array, ?array): array|false)|array|false $attributes
* @return \Illuminate\Foundation\Vite
* @static
*/
Expand Down Expand Up @@ -23015,7 +23046,7 @@ public static function orderByDesc($column)
/**
* Put the query's results in random order.
*
* @param string $seed
* @param string|int $seed
* @return \Illuminate\Database\Query\Builder
* @static
*/
Expand Down
2 changes: 1 addition & 1 deletion app/Providers/FilamentServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function boot()
return true;
});

FilamentVersions::addItem('Speedtest Tracker', 'v0.9.1');
FilamentVersions::addItem('Speedtest Tracker', 'v'.config('speedtest.build_version'));

Filament::serving(function () {
Filament::registerNavigationGroups([
Expand Down
Loading