From 54b937c3b2479e4d36b2a1749eaeddc76d56897a Mon Sep 17 00:00:00 2001 From: WildEgo Date: Tue, 16 Sep 2025 18:54:18 +0100 Subject: [PATCH] add: Basics of the Wiki API. fix: Mall authentication. --- .gitignore | 1 + _ide_helper.php | 8010 ++++++++--------- app/Http/Controllers/Mall/AuthController.php | 8 +- app/Http/Controllers/WikiController.php | 105 + .../Models/ItemProtoRefineResource.php | 31 + .../Resources/Models/ItemProtoResource.php | 46 + .../Models/ItemProtoSearchResource.php | 22 + .../Models/ItemProtoShopResource.php | 23 + app/Models/Account.php | 50 + app/Models/Enums/ApplyTypesEnum.php | 105 + app/Models/Enums/ArmorSubTypesEnum.php | 20 + app/Models/Enums/CostumeSubTypesEnum.php | 18 + app/Models/Enums/ItemTypesEnum.php | 53 + app/Models/Enums/LimitTypesEnum.php | 23 + app/Models/Enums/WeaponSubTypesEnum.php | 20 + app/Models/Game/Common/Locale.php | 10 + .../Game/Highscore/GuildHighscoreCache.php | 20 + app/Models/Game/Highscore/HighscoreCache.php | 20 + app/Models/Game/Player/Banword.php | 8 + app/Models/Game/Player/ItemAttr.php | 36 + app/Models/Game/Player/ItemAttrRare.php | 36 + app/Models/Game/Player/ItemProto.php | 124 +- app/Models/Game/Player/Land.php | 26 + app/Models/Game/Player/MobProto.php | 47 + app/Models/Game/Player/ObjectProto.php | 34 + app/Models/Game/Player/Player.php | 107 + app/Models/Game/Player/PlayerIndex.php | 19 + app/Models/Game/Player/RefineProto.php | 67 + app/Models/Game/Player/Shop.php | 20 + app/Models/Game/Player/ShopItem.php | 12 + app/Models/Game/Player/SkillProto.php | 68 + app/Models/Mall/MallCategory.php | 12 + app/Models/Mall/MallItem.php | 27 + bun.lock | 97 + composer.json | 5 +- composer.lock | 171 +- config/filesystems.php | 1 + config/scout.php | 209 + .../2025_09_13_100336_create_pets_table.php | 49 + routes/api.php | 8 + 40 files changed, 5656 insertions(+), 4112 deletions(-) create mode 100644 app/Http/Controllers/WikiController.php create mode 100644 app/Http/Resources/Models/ItemProtoRefineResource.php create mode 100644 app/Http/Resources/Models/ItemProtoResource.php create mode 100644 app/Http/Resources/Models/ItemProtoSearchResource.php create mode 100644 app/Http/Resources/Models/ItemProtoShopResource.php create mode 100644 app/Models/Enums/ApplyTypesEnum.php create mode 100644 app/Models/Enums/ArmorSubTypesEnum.php create mode 100644 app/Models/Enums/CostumeSubTypesEnum.php create mode 100644 app/Models/Enums/ItemTypesEnum.php create mode 100644 app/Models/Enums/LimitTypesEnum.php create mode 100644 app/Models/Enums/WeaponSubTypesEnum.php create mode 100644 app/Models/Game/Player/MobProto.php create mode 100644 bun.lock create mode 100644 config/scout.php create mode 100644 database/migrations/2025_09_13_100336_create_pets_table.php diff --git a/.gitignore b/.gitignore index 33e4f23..2cbba2e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ /public/build /public/hot /public/patch-data +/public/item-icon /storage/*.key /vendor .env diff --git a/_ide_helper.php b/_ide_helper.php index 60988d8..f0931f3 100644 --- a/_ide_helper.php +++ b/_ide_helper.php @@ -5,7 +5,7 @@ /** * A helper file for Laravel, to provide autocomplete information to your IDE - * Generated for Laravel 11.45.1. + * Generated for Laravel 11.46.0. * * This file should not be included in your code, only analyzed by your IDE! * @@ -14,8 +14,6 @@ */ namespace Illuminate\Support\Facades { /** - * - * * @see \Illuminate\Foundation\Application */ class App { @@ -23,8 +21,8 @@ namespace Illuminate\Support\Facades { * Begin configuring a new Laravel application instance. * * @param string|null $basePath - * @return \Illuminate\Foundation\Configuration\ApplicationBuilder - * @static + * @return \Illuminate\Foundation\Configuration\ApplicationBuilder + * @static */ public static function configure($basePath = null) { @@ -34,8 +32,8 @@ namespace Illuminate\Support\Facades { /** * Infer the application's base directory from the environment. * - * @return string - * @static + * @return string + * @static */ public static function inferBasePath() { @@ -45,8 +43,8 @@ namespace Illuminate\Support\Facades { /** * Get the version number of the application. * - * @return string - * @static + * @return string + * @static */ public static function version() { @@ -58,8 +56,8 @@ namespace Illuminate\Support\Facades { * Run the given array of bootstrap classes. * * @param string[] $bootstrappers - * @return void - * @static + * @return void + * @static */ public static function bootstrapWith($bootstrappers) { @@ -71,8 +69,8 @@ namespace Illuminate\Support\Facades { * Register a callback to run after loading the environment. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function afterLoadingEnvironment($callback) { @@ -85,8 +83,8 @@ namespace Illuminate\Support\Facades { * * @param string $bootstrapper * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function beforeBootstrapping($bootstrapper, $callback) { @@ -99,8 +97,8 @@ namespace Illuminate\Support\Facades { * * @param string $bootstrapper * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function afterBootstrapping($bootstrapper, $callback) { @@ -111,8 +109,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application has been bootstrapped before. * - * @return bool - * @static + * @return bool + * @static */ public static function hasBeenBootstrapped() { @@ -124,8 +122,8 @@ namespace Illuminate\Support\Facades { * Set the base path for the application. * * @param string $basePath - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function setBasePath($basePath) { @@ -137,8 +135,8 @@ namespace Illuminate\Support\Facades { * Get the path to the application "app" directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function path($path = '') { @@ -150,8 +148,8 @@ namespace Illuminate\Support\Facades { * Set the application directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useAppPath($path) { @@ -163,8 +161,8 @@ namespace Illuminate\Support\Facades { * Get the base path of the Laravel installation. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function basePath($path = '') { @@ -176,8 +174,8 @@ namespace Illuminate\Support\Facades { * Get the path to the bootstrap directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function bootstrapPath($path = '') { @@ -188,8 +186,8 @@ namespace Illuminate\Support\Facades { /** * Get the path to the service provider list in the bootstrap directory. * - * @return string - * @static + * @return string + * @static */ public static function getBootstrapProvidersPath() { @@ -201,8 +199,8 @@ namespace Illuminate\Support\Facades { * Set the bootstrap file directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useBootstrapPath($path) { @@ -214,8 +212,8 @@ namespace Illuminate\Support\Facades { * Get the path to the application configuration files. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function configPath($path = '') { @@ -227,8 +225,8 @@ namespace Illuminate\Support\Facades { * Set the configuration directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useConfigPath($path) { @@ -240,8 +238,8 @@ namespace Illuminate\Support\Facades { * Get the path to the database directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function databasePath($path = '') { @@ -253,8 +251,8 @@ namespace Illuminate\Support\Facades { * Set the database directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useDatabasePath($path) { @@ -266,8 +264,8 @@ namespace Illuminate\Support\Facades { * Get the path to the language files. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function langPath($path = '') { @@ -279,8 +277,8 @@ namespace Illuminate\Support\Facades { * Set the language file directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useLangPath($path) { @@ -292,8 +290,8 @@ namespace Illuminate\Support\Facades { * Get the path to the public / web directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function publicPath($path = '') { @@ -305,8 +303,8 @@ namespace Illuminate\Support\Facades { * Set the public / web directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function usePublicPath($path) { @@ -318,8 +316,8 @@ namespace Illuminate\Support\Facades { * Get the path to the storage directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function storagePath($path = '') { @@ -331,8 +329,8 @@ namespace Illuminate\Support\Facades { * Set the storage directory. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useStoragePath($path) { @@ -344,8 +342,8 @@ namespace Illuminate\Support\Facades { * Get the path to the resources directory. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function resourcePath($path = '') { @@ -359,8 +357,8 @@ namespace Illuminate\Support\Facades { * This method returns the first configured path in the array of view paths. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function viewPath($path = '') { @@ -373,8 +371,8 @@ namespace Illuminate\Support\Facades { * * @param string $basePath * @param string $path - * @return string - * @static + * @return string + * @static */ public static function joinPaths($basePath, $path = '') { @@ -385,8 +383,8 @@ namespace Illuminate\Support\Facades { /** * Get the path to the environment file directory. * - * @return string - * @static + * @return string + * @static */ public static function environmentPath() { @@ -398,8 +396,8 @@ namespace Illuminate\Support\Facades { * Set the directory for the environment file. * * @param string $path - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function useEnvironmentPath($path) { @@ -411,8 +409,8 @@ namespace Illuminate\Support\Facades { * Set the environment file to be loaded during bootstrapping. * * @param string $file - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function loadEnvironmentFrom($file) { @@ -423,8 +421,8 @@ namespace Illuminate\Support\Facades { /** * Get the environment file the application is using. * - * @return string - * @static + * @return string + * @static */ public static function environmentFile() { @@ -435,8 +433,8 @@ namespace Illuminate\Support\Facades { /** * Get the fully qualified path to the environment file. * - * @return string - * @static + * @return string + * @static */ public static function environmentFilePath() { @@ -448,8 +446,8 @@ namespace Illuminate\Support\Facades { * Get or check the current application environment. * * @param string|array $environments - * @return string|bool - * @static + * @return string|bool + * @static */ public static function environment(...$environments) { @@ -460,8 +458,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application is in the local environment. * - * @return bool - * @static + * @return bool + * @static */ public static function isLocal() { @@ -472,8 +470,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application is in the production environment. * - * @return bool - * @static + * @return bool + * @static */ public static function isProduction() { @@ -485,8 +483,8 @@ namespace Illuminate\Support\Facades { * Detect the application's current environment. * * @param \Closure $callback - * @return string - * @static + * @return string + * @static */ public static function detectEnvironment($callback) { @@ -497,8 +495,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application is running in the console. * - * @return bool - * @static + * @return bool + * @static */ public static function runningInConsole() { @@ -510,8 +508,8 @@ namespace Illuminate\Support\Facades { * Determine if the application is running any of the given console commands. * * @param string|array $commands - * @return bool - * @static + * @return bool + * @static */ public static function runningConsoleCommand(...$commands) { @@ -522,8 +520,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application is running unit tests. * - * @return bool - * @static + * @return bool + * @static */ public static function runningUnitTests() { @@ -534,8 +532,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application is running with debug mode enabled. * - * @return bool - * @static + * @return bool + * @static */ public static function hasDebugModeEnabled() { @@ -547,8 +545,8 @@ namespace Illuminate\Support\Facades { * Register a new registered listener. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function registered($callback) { @@ -559,8 +557,8 @@ namespace Illuminate\Support\Facades { /** * Register all of the configured providers. * - * @return void - * @static + * @return void + * @static */ public static function registerConfiguredProviders() { @@ -573,8 +571,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Support\ServiceProvider|string $provider * @param bool $force - * @return \Illuminate\Support\ServiceProvider - * @static + * @return \Illuminate\Support\ServiceProvider + * @static */ public static function register($provider, $force = false) { @@ -586,8 +584,8 @@ namespace Illuminate\Support\Facades { * Get the registered service provider instance if it exists. * * @param \Illuminate\Support\ServiceProvider|string $provider - * @return \Illuminate\Support\ServiceProvider|null - * @static + * @return \Illuminate\Support\ServiceProvider|null + * @static */ public static function getProvider($provider) { @@ -599,8 +597,8 @@ namespace Illuminate\Support\Facades { * Get the registered service provider instances if any exist. * * @param \Illuminate\Support\ServiceProvider|string $provider - * @return array - * @static + * @return array + * @static */ public static function getProviders($provider) { @@ -612,8 +610,8 @@ namespace Illuminate\Support\Facades { * Resolve a service provider instance from the class name. * * @param string $provider - * @return \Illuminate\Support\ServiceProvider - * @static + * @return \Illuminate\Support\ServiceProvider + * @static */ public static function resolveProvider($provider) { @@ -624,8 +622,8 @@ namespace Illuminate\Support\Facades { /** * Load and boot all of the remaining deferred providers. * - * @return void - * @static + * @return void + * @static */ public static function loadDeferredProviders() { @@ -637,8 +635,8 @@ namespace Illuminate\Support\Facades { * Load the provider for a deferred service. * * @param string $service - * @return void - * @static + * @return void + * @static */ public static function loadDeferredProvider($service) { @@ -651,8 +649,8 @@ namespace Illuminate\Support\Facades { * * @param string $provider * @param string|null $service - * @return void - * @static + * @return void + * @static */ public static function registerDeferredProvider($provider, $service = null) { @@ -668,7 +666,7 @@ namespace Illuminate\Support\Facades { * @param array $parameters * @return ($abstract is class-string ? TClass : mixed) * @throws \Illuminate\Contracts\Container\BindingResolutionException - * @static + * @static */ public static function make($abstract, $parameters = []) { @@ -680,8 +678,8 @@ namespace Illuminate\Support\Facades { * Determine if the given abstract type has been bound. * * @param string $abstract - * @return bool - * @static + * @return bool + * @static */ public static function bound($abstract) { @@ -692,8 +690,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application has booted. * - * @return bool - * @static + * @return bool + * @static */ public static function isBooted() { @@ -704,8 +702,8 @@ namespace Illuminate\Support\Facades { /** * Boot the application's service providers. * - * @return void - * @static + * @return void + * @static */ public static function boot() { @@ -717,8 +715,8 @@ namespace Illuminate\Support\Facades { * Register a new boot listener. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function booting($callback) { @@ -730,8 +728,8 @@ namespace Illuminate\Support\Facades { * Register a new "booted" listener. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function booted($callback) { @@ -742,8 +740,8 @@ namespace Illuminate\Support\Facades { /** * {@inheritdoc} * - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function handle($request, $type = 1, $catch = true) { @@ -755,8 +753,8 @@ namespace Illuminate\Support\Facades { * Handle the incoming HTTP request and send the response to the browser. * * @param \Illuminate\Http\Request $request - * @return void - * @static + * @return void + * @static */ public static function handleRequest($request) { @@ -768,8 +766,8 @@ namespace Illuminate\Support\Facades { * Handle the incoming Artisan command. * * @param \Symfony\Component\Console\Input\InputInterface $input - * @return int - * @static + * @return int + * @static */ public static function handleCommand($input) { @@ -780,8 +778,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the framework's base configuration should be merged. * - * @return bool - * @static + * @return bool + * @static */ public static function shouldMergeFrameworkConfiguration() { @@ -792,8 +790,8 @@ namespace Illuminate\Support\Facades { /** * Indicate that the framework's base configuration should not be merged. * - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function dontMergeFrameworkConfiguration() { @@ -804,8 +802,8 @@ namespace Illuminate\Support\Facades { /** * Determine if middleware has been disabled for the application. * - * @return bool - * @static + * @return bool + * @static */ public static function shouldSkipMiddleware() { @@ -816,8 +814,8 @@ namespace Illuminate\Support\Facades { /** * Get the path to the cached services.php file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedServicesPath() { @@ -828,8 +826,8 @@ namespace Illuminate\Support\Facades { /** * Get the path to the cached packages.php file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedPackagesPath() { @@ -840,8 +838,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application configuration is cached. * - * @return bool - * @static + * @return bool + * @static */ public static function configurationIsCached() { @@ -852,8 +850,8 @@ namespace Illuminate\Support\Facades { /** * Get the path to the configuration cache file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedConfigPath() { @@ -864,8 +862,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application routes are cached. * - * @return bool - * @static + * @return bool + * @static */ public static function routesAreCached() { @@ -876,8 +874,8 @@ namespace Illuminate\Support\Facades { /** * Get the path to the routes cache file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedRoutesPath() { @@ -888,8 +886,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application events are cached. * - * @return bool - * @static + * @return bool + * @static */ public static function eventsAreCached() { @@ -900,8 +898,8 @@ namespace Illuminate\Support\Facades { /** * Get the path to the events cache file. * - * @return string - * @static + * @return string + * @static */ public static function getCachedEventsPath() { @@ -913,8 +911,8 @@ namespace Illuminate\Support\Facades { * Add new prefix to list of absolute path prefixes. * * @param string $prefix - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function addAbsoluteCachePathPrefix($prefix) { @@ -925,8 +923,8 @@ namespace Illuminate\Support\Facades { /** * Get an instance of the maintenance mode manager implementation. * - * @return \Illuminate\Contracts\Foundation\MaintenanceMode - * @static + * @return \Illuminate\Contracts\Foundation\MaintenanceMode + * @static */ public static function maintenanceMode() { @@ -937,8 +935,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the application is currently down for maintenance. * - * @return bool - * @static + * @return bool + * @static */ public static function isDownForMaintenance() { @@ -952,10 +950,10 @@ namespace Illuminate\Support\Facades { * @param int $code * @param string $message * @param array $headers - * @return never + * @return never * @throws \Symfony\Component\HttpKernel\Exception\HttpException * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException - * @static + * @static */ public static function abort($code, $message = '', $headers = []) { @@ -967,8 +965,8 @@ namespace Illuminate\Support\Facades { * Register a terminating callback with the application. * * @param callable|string $callback - * @return \Illuminate\Foundation\Application - * @static + * @return \Illuminate\Foundation\Application + * @static */ public static function terminating($callback) { @@ -979,8 +977,8 @@ namespace Illuminate\Support\Facades { /** * Terminate the application. * - * @return void - * @static + * @return void + * @static */ public static function terminate() { @@ -991,8 +989,8 @@ namespace Illuminate\Support\Facades { /** * Get the service providers that have been loaded. * - * @return array - * @static + * @return array + * @static */ public static function getLoadedProviders() { @@ -1004,8 +1002,8 @@ namespace Illuminate\Support\Facades { * Determine if the given service provider is loaded. * * @param string $provider - * @return bool - * @static + * @return bool + * @static */ public static function providerIsLoaded($provider) { @@ -1016,8 +1014,8 @@ namespace Illuminate\Support\Facades { /** * Get the application's deferred services. * - * @return array - * @static + * @return array + * @static */ public static function getDeferredServices() { @@ -1029,8 +1027,8 @@ namespace Illuminate\Support\Facades { * Set the application's deferred services. * * @param array $services - * @return void - * @static + * @return void + * @static */ public static function setDeferredServices($services) { @@ -1042,8 +1040,8 @@ namespace Illuminate\Support\Facades { * Determine if the given service is a deferred service. * * @param string $service - * @return bool - * @static + * @return bool + * @static */ public static function isDeferredService($service) { @@ -1055,8 +1053,8 @@ namespace Illuminate\Support\Facades { * Add an array of services to the application's deferred services. * * @param array $services - * @return void - * @static + * @return void + * @static */ public static function addDeferredServices($services) { @@ -1068,8 +1066,8 @@ namespace Illuminate\Support\Facades { * Remove an array of services from the application's deferred services. * * @param array $services - * @return void - * @static + * @return void + * @static */ public static function removeDeferredServices($services) { @@ -1081,8 +1079,8 @@ namespace Illuminate\Support\Facades { * Configure the real-time facade namespace. * * @param string $namespace - * @return void - * @static + * @return void + * @static */ public static function provideFacades($namespace) { @@ -1093,8 +1091,8 @@ namespace Illuminate\Support\Facades { /** * Get the current application locale. * - * @return string - * @static + * @return string + * @static */ public static function getLocale() { @@ -1105,8 +1103,8 @@ namespace Illuminate\Support\Facades { /** * Get the current application locale. * - * @return string - * @static + * @return string + * @static */ public static function currentLocale() { @@ -1117,8 +1115,8 @@ namespace Illuminate\Support\Facades { /** * Get the current application fallback locale. * - * @return string - * @static + * @return string + * @static */ public static function getFallbackLocale() { @@ -1130,8 +1128,8 @@ namespace Illuminate\Support\Facades { * Set the current application locale. * * @param string $locale - * @return void - * @static + * @return void + * @static */ public static function setLocale($locale) { @@ -1143,8 +1141,8 @@ namespace Illuminate\Support\Facades { * Set the current application fallback locale. * * @param string $fallbackLocale - * @return void - * @static + * @return void + * @static */ public static function setFallbackLocale($fallbackLocale) { @@ -1156,8 +1154,8 @@ namespace Illuminate\Support\Facades { * Determine if the application locale is the given locale. * * @param string $locale - * @return bool - * @static + * @return bool + * @static */ public static function isLocale($locale) { @@ -1168,8 +1166,8 @@ namespace Illuminate\Support\Facades { /** * Register the core class aliases in the container. * - * @return void - * @static + * @return void + * @static */ public static function registerCoreContainerAliases() { @@ -1180,8 +1178,8 @@ namespace Illuminate\Support\Facades { /** * Flush the container of all bindings and resolved instances. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -1192,9 +1190,9 @@ namespace Illuminate\Support\Facades { /** * Get the application namespace. * - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function getNamespace() { @@ -1206,8 +1204,8 @@ namespace Illuminate\Support\Facades { * Define a contextual binding. * * @param array|string $concrete - * @return \Illuminate\Contracts\Container\ContextualBindingBuilder - * @static + * @return \Illuminate\Contracts\Container\ContextualBindingBuilder + * @static */ public static function when($concrete) { @@ -1221,8 +1219,8 @@ namespace Illuminate\Support\Facades { * * @param string $attribute * @param \Closure $handler - * @return void - * @static + * @return void + * @static */ public static function whenHasAttribute($attribute, $handler) { @@ -1239,10 +1237,10 @@ namespace Illuminate\Support\Facades { * `has($id)` returning true does not mean that `get($id)` will not throw an exception. * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`. * - * @return bool + * @return bool * @param string $id Identifier of the entry to look for. - * @return bool - * @static + * @return bool + * @static */ public static function has($id) { @@ -1255,8 +1253,8 @@ namespace Illuminate\Support\Facades { * Determine if the given abstract type has been resolved. * * @param string $abstract - * @return bool - * @static + * @return bool + * @static */ public static function resolved($abstract) { @@ -1269,8 +1267,8 @@ namespace Illuminate\Support\Facades { * Determine if a given type is shared. * * @param string $abstract - * @return bool - * @static + * @return bool + * @static */ public static function isShared($abstract) { @@ -1283,8 +1281,8 @@ namespace Illuminate\Support\Facades { * Determine if a given string is an alias. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function isAlias($name) { @@ -1299,9 +1297,9 @@ namespace Illuminate\Support\Facades { * @param string $abstract * @param \Closure|string|null $concrete * @param bool $shared - * @return void + * @return void * @throws \TypeError - * @static + * @static */ public static function bind($abstract, $concrete = null, $shared = false) { @@ -1314,8 +1312,8 @@ namespace Illuminate\Support\Facades { * Determine if the container has a method binding. * * @param string $method - * @return bool - * @static + * @return bool + * @static */ public static function hasMethodBinding($method) { @@ -1329,8 +1327,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $method * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function bindMethod($method, $callback) { @@ -1344,8 +1342,8 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param mixed $instance - * @return mixed - * @static + * @return mixed + * @static */ public static function callMethodBinding($method, $instance) { @@ -1360,8 +1358,8 @@ namespace Illuminate\Support\Facades { * @param string $concrete * @param string $abstract * @param \Closure|string $implementation - * @return void - * @static + * @return void + * @static */ public static function addContextualBinding($concrete, $abstract, $implementation) { @@ -1376,8 +1374,8 @@ namespace Illuminate\Support\Facades { * @param string $abstract * @param \Closure|string|null $concrete * @param bool $shared - * @return void - * @static + * @return void + * @static */ public static function bindIf($abstract, $concrete = null, $shared = false) { @@ -1391,8 +1389,8 @@ namespace Illuminate\Support\Facades { * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function singleton($abstract, $concrete = null) { @@ -1406,8 +1404,8 @@ namespace Illuminate\Support\Facades { * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function singletonIf($abstract, $concrete = null) { @@ -1421,8 +1419,8 @@ namespace Illuminate\Support\Facades { * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function scoped($abstract, $concrete = null) { @@ -1436,8 +1434,8 @@ namespace Illuminate\Support\Facades { * * @param string $abstract * @param \Closure|string|null $concrete - * @return void - * @static + * @return void + * @static */ public static function scopedIf($abstract, $concrete = null) { @@ -1451,9 +1449,9 @@ namespace Illuminate\Support\Facades { * * @param string $abstract * @param \Closure $closure - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function extend($abstract, $closure) { @@ -1468,8 +1466,8 @@ namespace Illuminate\Support\Facades { * @template TInstance of mixed * @param string $abstract * @param TInstance $instance - * @return TInstance - * @static + * @return TInstance + * @static */ public static function instance($abstract, $instance) { @@ -1483,8 +1481,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $abstracts * @param array|mixed $tags - * @return void - * @static + * @return void + * @static */ public static function tag($abstracts, $tags) { @@ -1497,8 +1495,8 @@ namespace Illuminate\Support\Facades { * Resolve all of the bindings for a given tag. * * @param string $tag - * @return iterable - * @static + * @return iterable + * @static */ public static function tagged($tag) { @@ -1512,9 +1510,9 @@ namespace Illuminate\Support\Facades { * * @param string $abstract * @param string $alias - * @return void + * @return void * @throws \LogicException - * @static + * @static */ public static function alias($abstract, $alias) { @@ -1528,8 +1526,8 @@ namespace Illuminate\Support\Facades { * * @param string $abstract * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function rebinding($abstract, $callback) { @@ -1544,8 +1542,8 @@ namespace Illuminate\Support\Facades { * @param string $abstract * @param mixed $target * @param string $method - * @return mixed - * @static + * @return mixed + * @static */ public static function refresh($abstract, $target, $method) { @@ -1559,8 +1557,8 @@ namespace Illuminate\Support\Facades { * * @param \Closure $callback * @param array $parameters - * @return \Closure - * @static + * @return \Closure + * @static */ public static function wrap($callback, $parameters = []) { @@ -1575,9 +1573,9 @@ namespace Illuminate\Support\Facades { * @param callable|string $callback * @param array $parameters * @param string|null $defaultMethod - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function call($callback, $parameters = [], $defaultMethod = null) { @@ -1592,7 +1590,7 @@ namespace Illuminate\Support\Facades { * @template TClass of object * @param string|class-string $abstract * @return ($abstract is class-string ? \Closure(): TClass : \Closure(): mixed) - * @static + * @static */ public static function factory($abstract) { @@ -1609,7 +1607,7 @@ namespace Illuminate\Support\Facades { * @param array $parameters * @return ($abstract is class-string ? TClass : mixed) * @throws \Illuminate\Contracts\Container\BindingResolutionException - * @static + * @static */ public static function makeWith($abstract, $parameters = []) { @@ -1624,7 +1622,7 @@ namespace Illuminate\Support\Facades { * @template TClass of object * @param string|class-string $id * @return ($id is class-string ? TClass : mixed) - * @static + * @static */ public static function get($id) { @@ -1638,10 +1636,10 @@ namespace Illuminate\Support\Facades { * * @template TClass of object * @param \Closure(static, array): TClass|class-string $concrete - * @return TClass + * @return TClass * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException - * @static + * @static */ public static function build($concrete) { @@ -1654,8 +1652,8 @@ namespace Illuminate\Support\Facades { * Resolve a dependency based on an attribute. * * @param \ReflectionAttribute $attribute - * @return mixed - * @static + * @return mixed + * @static */ public static function resolveFromAttribute($attribute) { @@ -1669,8 +1667,8 @@ namespace Illuminate\Support\Facades { * * @param \Closure|string $abstract * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function beforeResolving($abstract, $callback = null) { @@ -1684,8 +1682,8 @@ namespace Illuminate\Support\Facades { * * @param \Closure|string $abstract * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function resolving($abstract, $callback = null) { @@ -1699,8 +1697,8 @@ namespace Illuminate\Support\Facades { * * @param \Closure|string $abstract * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function afterResolving($abstract, $callback = null) { @@ -1714,8 +1712,8 @@ namespace Illuminate\Support\Facades { * * @param string $attribute * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function afterResolvingAttribute($attribute, $callback) { @@ -1729,8 +1727,8 @@ namespace Illuminate\Support\Facades { * * @param \ReflectionAttribute[] $attributes * @param mixed $object - * @return void - * @static + * @return void + * @static */ public static function fireAfterResolvingAttributeCallbacks($attributes, $object) { @@ -1742,8 +1740,8 @@ namespace Illuminate\Support\Facades { /** * Get the container's bindings. * - * @return array - * @static + * @return array + * @static */ public static function getBindings() { @@ -1756,8 +1754,8 @@ namespace Illuminate\Support\Facades { * Get the alias for an abstract if available. * * @param string $abstract - * @return string - * @static + * @return string + * @static */ public static function getAlias($abstract) { @@ -1770,8 +1768,8 @@ namespace Illuminate\Support\Facades { * Remove all of the extender callbacks for a given type. * * @param string $abstract - * @return void - * @static + * @return void + * @static */ public static function forgetExtenders($abstract) { @@ -1784,8 +1782,8 @@ namespace Illuminate\Support\Facades { * Remove a resolved instance from the instance cache. * * @param string $abstract - * @return void - * @static + * @return void + * @static */ public static function forgetInstance($abstract) { @@ -1797,8 +1795,8 @@ namespace Illuminate\Support\Facades { /** * Clear all of the instances from the container. * - * @return void - * @static + * @return void + * @static */ public static function forgetInstances() { @@ -1810,8 +1808,8 @@ namespace Illuminate\Support\Facades { /** * Clear all of the scoped instances from the container. * - * @return void - * @static + * @return void + * @static */ public static function forgetScopedInstances() { @@ -1823,8 +1821,8 @@ namespace Illuminate\Support\Facades { /** * Get the globally available instance of the container. * - * @return static - * @static + * @return static + * @static */ public static function getInstance() { @@ -1836,8 +1834,8 @@ namespace Illuminate\Support\Facades { * Set the shared instance of the container. * * @param \Illuminate\Contracts\Container\Container|null $container - * @return \Illuminate\Contracts\Container\Container|static - * @static + * @return \Illuminate\Contracts\Container\Container|static + * @static */ public static function setInstance($container = null) { @@ -1849,8 +1847,8 @@ namespace Illuminate\Support\Facades { * Determine if a given offset exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($key) { @@ -1863,8 +1861,8 @@ namespace Illuminate\Support\Facades { * Get the value at a given offset. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($key) { @@ -1878,8 +1876,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($key, $value) { @@ -1892,8 +1890,8 @@ namespace Illuminate\Support\Facades { * Unset the value at a given offset. * * @param string $key - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($key) { @@ -1908,8 +1906,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -1921,9 +1919,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -1934,8 +1932,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -1945,8 +1943,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -1955,17 +1953,15 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Foundation\Console\Kernel */ class Artisan { /** * Re-route the Symfony command events to their Laravel counterparts. * - * @internal - * @return \Illuminate\Foundation\Console\Kernel - * @static + * @internal + * @return \Illuminate\Foundation\Console\Kernel + * @static */ public static function rerouteSymfonyCommandEvents() { @@ -1978,8 +1974,8 @@ namespace Illuminate\Support\Facades { * * @param \Symfony\Component\Console\Input\InputInterface $input * @param \Symfony\Component\Console\Output\OutputInterface|null $output - * @return int - * @static + * @return int + * @static */ public static function handle($input, $output = null) { @@ -1992,8 +1988,8 @@ namespace Illuminate\Support\Facades { * * @param \Symfony\Component\Console\Input\InputInterface $input * @param int $status - * @return void - * @static + * @return void + * @static */ public static function terminate($input, $status) { @@ -2006,8 +2002,8 @@ namespace Illuminate\Support\Facades { * * @param \DateTimeInterface|\Carbon\CarbonInterval|float|int $threshold * @param callable $handler - * @return void - * @static + * @return void + * @static */ public static function whenCommandLifecycleIsLongerThan($threshold, $handler) { @@ -2018,8 +2014,8 @@ namespace Illuminate\Support\Facades { /** * When the command being handled started. * - * @return \Illuminate\Support\Carbon|null - * @static + * @return \Illuminate\Support\Carbon|null + * @static */ public static function commandStartedAt() { @@ -2030,8 +2026,8 @@ namespace Illuminate\Support\Facades { /** * Resolve a console schedule instance. * - * @return \Illuminate\Console\Scheduling\Schedule - * @static + * @return \Illuminate\Console\Scheduling\Schedule + * @static */ public static function resolveConsoleSchedule() { @@ -2044,8 +2040,8 @@ namespace Illuminate\Support\Facades { * * @param string $signature * @param \Closure $callback - * @return \Illuminate\Foundation\Console\ClosureCommand - * @static + * @return \Illuminate\Foundation\Console\ClosureCommand + * @static */ public static function command($signature, $callback) { @@ -2057,8 +2053,8 @@ namespace Illuminate\Support\Facades { * Register the given command with the console application. * * @param \Symfony\Component\Console\Command\Command $command - * @return void - * @static + * @return void + * @static */ public static function registerCommand($command) { @@ -2072,9 +2068,9 @@ namespace Illuminate\Support\Facades { * @param string $command * @param array $parameters * @param \Symfony\Component\Console\Output\OutputInterface|null $outputBuffer - * @return int + * @return int * @throws \Symfony\Component\Console\Exception\CommandNotFoundException - * @static + * @static */ public static function call($command, $parameters = [], $outputBuffer = null) { @@ -2087,8 +2083,8 @@ namespace Illuminate\Support\Facades { * * @param string $command * @param array $parameters - * @return \Illuminate\Foundation\Bus\PendingDispatch - * @static + * @return \Illuminate\Foundation\Bus\PendingDispatch + * @static */ public static function queue($command, $parameters = []) { @@ -2099,8 +2095,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the commands registered with the console. * - * @return array - * @static + * @return array + * @static */ public static function all() { @@ -2111,8 +2107,8 @@ namespace Illuminate\Support\Facades { /** * Get the output for the last run command. * - * @return string - * @static + * @return string + * @static */ public static function output() { @@ -2123,8 +2119,8 @@ namespace Illuminate\Support\Facades { /** * Bootstrap the application for artisan commands. * - * @return void - * @static + * @return void + * @static */ public static function bootstrap() { @@ -2135,8 +2131,8 @@ namespace Illuminate\Support\Facades { /** * Bootstrap the application without booting service providers. * - * @return void - * @static + * @return void + * @static */ public static function bootstrapWithoutBootingProviders() { @@ -2148,8 +2144,8 @@ namespace Illuminate\Support\Facades { * Set the Artisan application instance. * * @param \Illuminate\Console\Application|null $artisan - * @return void - * @static + * @return void + * @static */ public static function setArtisan($artisan) { @@ -2161,8 +2157,8 @@ namespace Illuminate\Support\Facades { * Set the Artisan commands provided by the application. * * @param array $commands - * @return \Illuminate\Foundation\Console\Kernel - * @static + * @return \Illuminate\Foundation\Console\Kernel + * @static */ public static function addCommands($commands) { @@ -2174,8 +2170,8 @@ namespace Illuminate\Support\Facades { * Set the paths that should have their Artisan commands automatically discovered. * * @param array $paths - * @return \Illuminate\Foundation\Console\Kernel - * @static + * @return \Illuminate\Foundation\Console\Kernel + * @static */ public static function addCommandPaths($paths) { @@ -2187,8 +2183,8 @@ namespace Illuminate\Support\Facades { * Set the paths that should have their Artisan "routes" automatically discovered. * * @param array $paths - * @return \Illuminate\Foundation\Console\Kernel - * @static + * @return \Illuminate\Foundation\Console\Kernel + * @static */ public static function addCommandRoutePaths($paths) { @@ -2198,8 +2194,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Auth\AuthManager * @see \Illuminate\Auth\SessionGuard */ @@ -2208,8 +2202,8 @@ namespace Illuminate\Support\Facades { * Attempt to get the guard from the local cache. * * @param string|null $name - * @return \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard - * @static + * @return \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard + * @static */ public static function guard($name = null) { @@ -2222,8 +2216,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param array $config - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function createSessionDriver($name, $config) { @@ -2236,8 +2230,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param array $config - * @return \Illuminate\Auth\TokenGuard - * @static + * @return \Illuminate\Auth\TokenGuard + * @static */ public static function createTokenDriver($name, $config) { @@ -2248,8 +2242,8 @@ namespace Illuminate\Support\Facades { /** * Get the default authentication driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -2261,8 +2255,8 @@ namespace Illuminate\Support\Facades { * Set the default guard driver the factory should serve. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function shouldUse($name) { @@ -2274,8 +2268,8 @@ namespace Illuminate\Support\Facades { * Set the default authentication driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -2288,8 +2282,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param callable $callback - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function viaRequest($driver, $callback) { @@ -2300,8 +2294,8 @@ namespace Illuminate\Support\Facades { /** * Get the user resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function userResolver() { @@ -2313,8 +2307,8 @@ namespace Illuminate\Support\Facades { * Set the callback to be used to resolve users. * * @param \Closure $userResolver - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function resolveUsersUsing($userResolver) { @@ -2327,8 +2321,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function extend($driver, $callback) { @@ -2341,8 +2335,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param \Closure $callback - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function provider($name, $callback) { @@ -2353,8 +2347,8 @@ namespace Illuminate\Support\Facades { /** * Determines if any guards have already been resolved. * - * @return bool - * @static + * @return bool + * @static */ public static function hasResolvedGuards() { @@ -2365,8 +2359,8 @@ namespace Illuminate\Support\Facades { /** * Forget all of the resolved guard instances. * - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function forgetGuards() { @@ -2378,8 +2372,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Auth\AuthManager - * @static + * @return \Illuminate\Auth\AuthManager + * @static */ public static function setApplication($app) { @@ -2391,9 +2385,9 @@ namespace Illuminate\Support\Facades { * Create the user provider implementation for the driver. * * @param string|null $provider - * @return \Illuminate\Contracts\Auth\UserProvider|null + * @return \Illuminate\Contracts\Auth\UserProvider|null * @throws \InvalidArgumentException - * @static + * @static */ public static function createUserProvider($provider = null) { @@ -2404,8 +2398,8 @@ namespace Illuminate\Support\Facades { /** * Get the default user provider name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultUserProvider() { @@ -2416,8 +2410,8 @@ namespace Illuminate\Support\Facades { /** * Get the currently authenticated user. * - * @return \App\Models\Account|null - * @static + * @return \App\Models\Account|null + * @static */ public static function user() { @@ -2428,8 +2422,8 @@ namespace Illuminate\Support\Facades { /** * Get the ID for the currently authenticated user. * - * @return int|string|null - * @static + * @return int|string|null + * @static */ public static function id() { @@ -2441,8 +2435,8 @@ namespace Illuminate\Support\Facades { * Log a user into the application without sessions or cookies. * * @param array $credentials - * @return bool - * @static + * @return bool + * @static */ public static function once($credentials = []) { @@ -2454,8 +2448,8 @@ namespace Illuminate\Support\Facades { * Log the given user ID into the application without sessions or cookies. * * @param mixed $id - * @return \App\Models\Account|false - * @static + * @return \App\Models\Account|false + * @static */ public static function onceUsingId($id) { @@ -2467,8 +2461,8 @@ namespace Illuminate\Support\Facades { * Validate a user's credentials. * * @param array $credentials - * @return bool - * @static + * @return bool + * @static */ public static function validate($credentials = []) { @@ -2481,9 +2475,9 @@ namespace Illuminate\Support\Facades { * * @param string $field * @param array $extraConditions - * @return \Symfony\Component\HttpFoundation\Response|null + * @return \Symfony\Component\HttpFoundation\Response|null * @throws \Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException - * @static + * @static */ public static function basic($field = 'email', $extraConditions = []) { @@ -2496,9 +2490,9 @@ namespace Illuminate\Support\Facades { * * @param string $field * @param array $extraConditions - * @return \Symfony\Component\HttpFoundation\Response|null + * @return \Symfony\Component\HttpFoundation\Response|null * @throws \Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException - * @static + * @static */ public static function onceBasic($field = 'email', $extraConditions = []) { @@ -2511,8 +2505,8 @@ namespace Illuminate\Support\Facades { * * @param array $credentials * @param bool $remember - * @return bool - * @static + * @return bool + * @static */ public static function attempt($credentials = [], $remember = false) { @@ -2526,8 +2520,8 @@ namespace Illuminate\Support\Facades { * @param array $credentials * @param array|callable|null $callbacks * @param bool $remember - * @return bool - * @static + * @return bool + * @static */ public static function attemptWhen($credentials = [], $callbacks = null, $remember = false) { @@ -2540,8 +2534,8 @@ namespace Illuminate\Support\Facades { * * @param mixed $id * @param bool $remember - * @return \App\Models\Account|false - * @static + * @return \App\Models\Account|false + * @static */ public static function loginUsingId($id, $remember = false) { @@ -2554,8 +2548,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Contracts\Auth\Authenticatable $user * @param bool $remember - * @return void - * @static + * @return void + * @static */ public static function login($user, $remember = false) { @@ -2566,8 +2560,8 @@ namespace Illuminate\Support\Facades { /** * Log the user out of the application. * - * @return void - * @static + * @return void + * @static */ public static function logout() { @@ -2580,8 +2574,8 @@ namespace Illuminate\Support\Facades { * * This method does not cycle the "remember" token. * - * @return void - * @static + * @return void + * @static */ public static function logoutCurrentDevice() { @@ -2595,9 +2589,9 @@ namespace Illuminate\Support\Facades { * The application must be using the AuthenticateSession middleware. * * @param string $password - * @return \App\Models\Account|null + * @return \App\Models\Account|null * @throws \Illuminate\Auth\AuthenticationException - * @static + * @static */ public static function logoutOtherDevices($password) { @@ -2609,8 +2603,8 @@ namespace Illuminate\Support\Facades { * Register an authentication attempt event listener. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function attempting($callback) { @@ -2621,8 +2615,8 @@ namespace Illuminate\Support\Facades { /** * Get the last user we attempted to authenticate. * - * @return \App\Models\Account - * @static + * @return \App\Models\Account + * @static */ public static function getLastAttempted() { @@ -2633,8 +2627,8 @@ namespace Illuminate\Support\Facades { /** * Get a unique identifier for the auth session value. * - * @return string - * @static + * @return string + * @static */ public static function getName() { @@ -2645,8 +2639,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the cookie used to store the "recaller". * - * @return string - * @static + * @return string + * @static */ public static function getRecallerName() { @@ -2657,8 +2651,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the user was authenticated via "remember me" cookie. * - * @return bool - * @static + * @return bool + * @static */ public static function viaRemember() { @@ -2670,8 +2664,8 @@ namespace Illuminate\Support\Facades { * Set the number of minutes the remember me cookie should be valid for. * * @param int $minutes - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function setRememberDuration($minutes) { @@ -2682,9 +2676,9 @@ namespace Illuminate\Support\Facades { /** * Get the cookie creator instance used by the guard. * - * @return \Illuminate\Contracts\Cookie\QueueingFactory + * @return \Illuminate\Contracts\Cookie\QueueingFactory * @throws \RuntimeException - * @static + * @static */ public static function getCookieJar() { @@ -2696,8 +2690,8 @@ namespace Illuminate\Support\Facades { * Set the cookie creator instance used by the guard. * * @param \Illuminate\Contracts\Cookie\QueueingFactory $cookie - * @return void - * @static + * @return void + * @static */ public static function setCookieJar($cookie) { @@ -2708,8 +2702,8 @@ namespace Illuminate\Support\Facades { /** * Get the event dispatcher instance. * - * @return \Illuminate\Contracts\Events\Dispatcher - * @static + * @return \Illuminate\Contracts\Events\Dispatcher + * @static */ public static function getDispatcher() { @@ -2721,8 +2715,8 @@ namespace Illuminate\Support\Facades { * Set the event dispatcher instance. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return void - * @static + * @return void + * @static */ public static function setDispatcher($events) { @@ -2733,8 +2727,8 @@ namespace Illuminate\Support\Facades { /** * Get the session store used by the guard. * - * @return \Illuminate\Contracts\Session\Session - * @static + * @return \Illuminate\Contracts\Session\Session + * @static */ public static function getSession() { @@ -2745,8 +2739,8 @@ namespace Illuminate\Support\Facades { /** * Return the currently cached user. * - * @return \App\Models\Account|null - * @static + * @return \App\Models\Account|null + * @static */ public static function getUser() { @@ -2758,8 +2752,8 @@ namespace Illuminate\Support\Facades { * Set the current user. * * @param \Illuminate\Contracts\Auth\Authenticatable $user - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function setUser($user) { @@ -2770,8 +2764,8 @@ namespace Illuminate\Support\Facades { /** * Get the current request instance. * - * @return \Symfony\Component\HttpFoundation\Request - * @static + * @return \Symfony\Component\HttpFoundation\Request + * @static */ public static function getRequest() { @@ -2783,8 +2777,8 @@ namespace Illuminate\Support\Facades { * Set the current request instance. * * @param \Symfony\Component\HttpFoundation\Request $request - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function setRequest($request) { @@ -2795,8 +2789,8 @@ namespace Illuminate\Support\Facades { /** * Get the timebox instance used by the guard. * - * @return \Illuminate\Support\Timebox - * @static + * @return \Illuminate\Support\Timebox + * @static */ public static function getTimebox() { @@ -2807,9 +2801,9 @@ namespace Illuminate\Support\Facades { /** * Determine if the current user is authenticated. If not, throw an exception. * - * @return \App\Models\Account + * @return \App\Models\Account * @throws \Illuminate\Auth\AuthenticationException - * @static + * @static */ public static function authenticate() { @@ -2820,8 +2814,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the guard has a user instance. * - * @return bool - * @static + * @return bool + * @static */ public static function hasUser() { @@ -2832,8 +2826,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current user is authenticated. * - * @return bool - * @static + * @return bool + * @static */ public static function check() { @@ -2844,8 +2838,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current user is a guest. * - * @return bool - * @static + * @return bool + * @static */ public static function guest() { @@ -2856,8 +2850,8 @@ namespace Illuminate\Support\Facades { /** * Forget the current user. * - * @return \Illuminate\Auth\SessionGuard - * @static + * @return \Illuminate\Auth\SessionGuard + * @static */ public static function forgetUser() { @@ -2868,8 +2862,8 @@ namespace Illuminate\Support\Facades { /** * Get the user provider used by the guard. * - * @return \Illuminate\Contracts\Auth\UserProvider - * @static + * @return \Illuminate\Contracts\Auth\UserProvider + * @static */ public static function getProvider() { @@ -2881,8 +2875,8 @@ namespace Illuminate\Support\Facades { * Set the user provider used by the guard. * * @param \Illuminate\Contracts\Auth\UserProvider $provider - * @return void - * @static + * @return void + * @static */ public static function setProvider($provider) { @@ -2896,8 +2890,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -2909,9 +2903,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -2922,8 +2916,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -2933,8 +2927,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -2943,8 +2937,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\View\Compilers\BladeCompiler */ class Blade { @@ -2952,8 +2944,8 @@ namespace Illuminate\Support\Facades { * Compile the view at the given path. * * @param string|null $path - * @return void - * @static + * @return void + * @static */ public static function compile($path = null) { @@ -2964,8 +2956,8 @@ namespace Illuminate\Support\Facades { /** * Get the path currently being compiled. * - * @return string - * @static + * @return string + * @static */ public static function getPath() { @@ -2977,8 +2969,8 @@ namespace Illuminate\Support\Facades { * Set the path currently being compiled. * * @param string $path - * @return void - * @static + * @return void + * @static */ public static function setPath($path) { @@ -2990,8 +2982,8 @@ namespace Illuminate\Support\Facades { * Compile the given Blade template contents. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function compileString($value) { @@ -3005,8 +2997,8 @@ namespace Illuminate\Support\Facades { * @param string $string * @param array $data * @param bool $deleteCachedView - * @return string - * @static + * @return string + * @static */ public static function render($string, $data = [], $deleteCachedView = false) { @@ -3017,8 +3009,8 @@ namespace Illuminate\Support\Facades { * Render a component instance to HTML. * * @param \Illuminate\View\Component $component - * @return string - * @static + * @return string + * @static */ public static function renderComponent($component) { @@ -3029,8 +3021,8 @@ namespace Illuminate\Support\Facades { * Strip the parentheses from the given expression. * * @param string $expression - * @return string - * @static + * @return string + * @static */ public static function stripParentheses($expression) { @@ -3042,8 +3034,8 @@ namespace Illuminate\Support\Facades { * Register a custom Blade compiler. * * @param callable $compiler - * @return void - * @static + * @return void + * @static */ public static function extend($compiler) { @@ -3054,8 +3046,8 @@ namespace Illuminate\Support\Facades { /** * Get the extensions used by the compiler. * - * @return array - * @static + * @return array + * @static */ public static function getExtensions() { @@ -3068,8 +3060,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function if($name, $callback) { @@ -3082,8 +3074,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param mixed $parameters - * @return bool - * @static + * @return bool + * @static */ public static function check($name, ...$parameters) { @@ -3097,8 +3089,8 @@ namespace Illuminate\Support\Facades { * @param string $class * @param string|null $alias * @param string $prefix - * @return void - * @static + * @return void + * @static */ public static function component($class, $alias = null, $prefix = '') { @@ -3111,8 +3103,8 @@ namespace Illuminate\Support\Facades { * * @param array $components * @param string $prefix - * @return void - * @static + * @return void + * @static */ public static function components($components, $prefix = '') { @@ -3123,8 +3115,8 @@ namespace Illuminate\Support\Facades { /** * Get the registered class component aliases. * - * @return array - * @static + * @return array + * @static */ public static function getClassComponentAliases() { @@ -3137,8 +3129,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string|null $prefix - * @return void - * @static + * @return void + * @static */ public static function anonymousComponentPath($path, $prefix = null) { @@ -3151,8 +3143,8 @@ namespace Illuminate\Support\Facades { * * @param string $directory * @param string|null $prefix - * @return void - * @static + * @return void + * @static */ public static function anonymousComponentNamespace($directory, $prefix = null) { @@ -3165,8 +3157,8 @@ namespace Illuminate\Support\Facades { * * @param string $namespace * @param string $prefix - * @return void - * @static + * @return void + * @static */ public static function componentNamespace($namespace, $prefix) { @@ -3177,8 +3169,8 @@ namespace Illuminate\Support\Facades { /** * Get the registered anonymous component paths. * - * @return array - * @static + * @return array + * @static */ public static function getAnonymousComponentPaths() { @@ -3189,8 +3181,8 @@ namespace Illuminate\Support\Facades { /** * Get the registered anonymous component namespaces. * - * @return array - * @static + * @return array + * @static */ public static function getAnonymousComponentNamespaces() { @@ -3201,8 +3193,8 @@ namespace Illuminate\Support\Facades { /** * Get the registered class component namespaces. * - * @return array - * @static + * @return array + * @static */ public static function getClassComponentNamespaces() { @@ -3215,8 +3207,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string|null $alias - * @return void - * @static + * @return void + * @static */ public static function aliasComponent($path, $alias = null) { @@ -3229,8 +3221,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string|null $alias - * @return void - * @static + * @return void + * @static */ public static function include($path, $alias = null) { @@ -3243,8 +3235,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string|null $alias - * @return void - * @static + * @return void + * @static */ public static function aliasInclude($path, $alias = null) { @@ -3257,9 +3249,9 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param callable $handler - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function bindDirective($name, $handler) { @@ -3273,9 +3265,9 @@ namespace Illuminate\Support\Facades { * @param string $name * @param callable $handler * @param bool $bind - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function directive($name, $handler, $bind = false) { @@ -3286,8 +3278,8 @@ namespace Illuminate\Support\Facades { /** * Get the list of custom directives. * - * @return array - * @static + * @return array + * @static */ public static function getCustomDirectives() { @@ -3299,8 +3291,8 @@ namespace Illuminate\Support\Facades { * Indicate that the following callable should be used to prepare strings for compilation. * * @param callable $callback - * @return \Illuminate\View\Compilers\BladeCompiler - * @static + * @return \Illuminate\View\Compilers\BladeCompiler + * @static */ public static function prepareStringsForCompilationUsing($callback) { @@ -3312,8 +3304,8 @@ namespace Illuminate\Support\Facades { * Register a new precompiler. * * @param callable $precompiler - * @return void - * @static + * @return void + * @static */ public static function precompiler($precompiler) { @@ -3326,8 +3318,8 @@ namespace Illuminate\Support\Facades { * * @param string $format * @param callable $callback - * @return string - * @static + * @return string + * @static */ public static function usingEchoFormat($format, $callback) { @@ -3339,8 +3331,8 @@ namespace Illuminate\Support\Facades { * Set the echo format to be used by the compiler. * * @param string $format - * @return void - * @static + * @return void + * @static */ public static function setEchoFormat($format) { @@ -3351,8 +3343,8 @@ namespace Illuminate\Support\Facades { /** * Set the "echo" format to double encode entities. * - * @return void - * @static + * @return void + * @static */ public static function withDoubleEncoding() { @@ -3363,8 +3355,8 @@ namespace Illuminate\Support\Facades { /** * Set the "echo" format to not double encode entities. * - * @return void - * @static + * @return void + * @static */ public static function withoutDoubleEncoding() { @@ -3375,8 +3367,8 @@ namespace Illuminate\Support\Facades { /** * Indicate that component tags should not be compiled. * - * @return void - * @static + * @return void + * @static */ public static function withoutComponentTags() { @@ -3388,8 +3380,8 @@ namespace Illuminate\Support\Facades { * Get the path to the compiled version of a view. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function getCompiledPath($path) { @@ -3402,9 +3394,9 @@ namespace Illuminate\Support\Facades { * Determine if the view at the given path is expired. * * @param string $path - * @return bool + * @return bool * @throws \ErrorException - * @static + * @static */ public static function isExpired($path) { @@ -3417,8 +3409,8 @@ namespace Illuminate\Support\Facades { * Get a new component hash for a component name. * * @param string $component - * @return string - * @static + * @return string + * @static */ public static function newComponentHash($component) { @@ -3432,8 +3424,8 @@ namespace Illuminate\Support\Facades { * @param string $alias * @param string $data * @param string $hash - * @return string - * @static + * @return string + * @static */ public static function compileClassComponentOpening($component, $alias, $data, $hash) { @@ -3443,8 +3435,8 @@ namespace Illuminate\Support\Facades { /** * Compile the end-component statements into valid PHP. * - * @return string - * @static + * @return string + * @static */ public static function compileEndComponentClass() { @@ -3456,8 +3448,8 @@ namespace Illuminate\Support\Facades { * Sanitize the given component attribute value. * * @param mixed $value - * @return mixed - * @static + * @return mixed + * @static */ public static function sanitizeComponentAttribute($value) { @@ -3467,8 +3459,8 @@ namespace Illuminate\Support\Facades { /** * Compile an end-once block into valid PHP. * - * @return string - * @static + * @return string + * @static */ public static function compileEndOnce() { @@ -3481,8 +3473,8 @@ namespace Illuminate\Support\Facades { * * @param string|callable $class * @param callable|null $handler - * @return void - * @static + * @return void + * @static */ public static function stringable($class, $handler = null) { @@ -3494,8 +3486,8 @@ namespace Illuminate\Support\Facades { * Compile Blade echos into valid PHP. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function compileEchos($value) { @@ -3507,8 +3499,8 @@ namespace Illuminate\Support\Facades { * Apply the echo handler for the value if it exists. * * @param string $value - * @return string - * @static + * @return string + * @static */ public static function applyEchoHandler($value) { @@ -3518,8 +3510,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static mixed auth(\Illuminate\Http\Request $request) * @method static mixed validAuthenticationResponse(\Illuminate\Http\Request $request, mixed $result) * @method static void broadcast(array $channels, string $event, array $payload = []) @@ -3535,8 +3525,8 @@ namespace Illuminate\Support\Facades { * Register the routes for handling broadcast channel authentication and sockets. * * @param array|null $attributes - * @return void - * @static + * @return void + * @static */ public static function routes($attributes = null) { @@ -3548,8 +3538,8 @@ namespace Illuminate\Support\Facades { * Register the routes for handling broadcast user authentication. * * @param array|null $attributes - * @return void - * @static + * @return void + * @static */ public static function userRoutes($attributes = null) { @@ -3563,8 +3553,8 @@ namespace Illuminate\Support\Facades { * Alias of "routes" method. * * @param array|null $attributes - * @return void - * @static + * @return void + * @static */ public static function channelRoutes($attributes = null) { @@ -3576,8 +3566,8 @@ namespace Illuminate\Support\Facades { * Get the socket ID for the given request. * * @param \Illuminate\Http\Request|null $request - * @return string|null - * @static + * @return string|null + * @static */ public static function socket($request = null) { @@ -3588,7 +3578,7 @@ namespace Illuminate\Support\Facades { /** * Begin sending an anonymous broadcast to the given channels. * - * @static + * @static */ public static function on($channels) { @@ -3599,7 +3589,7 @@ namespace Illuminate\Support\Facades { /** * Begin sending an anonymous broadcast to the given private channels. * - * @static + * @static */ public static function private($channel) { @@ -3610,7 +3600,7 @@ namespace Illuminate\Support\Facades { /** * Begin sending an anonymous broadcast to the given presence channels. * - * @static + * @static */ public static function presence($channel) { @@ -3622,8 +3612,8 @@ namespace Illuminate\Support\Facades { * Begin broadcasting an event. * * @param mixed|null $event - * @return \Illuminate\Broadcasting\PendingBroadcast - * @static + * @return \Illuminate\Broadcasting\PendingBroadcast + * @static */ public static function event($event = null) { @@ -3635,8 +3625,8 @@ namespace Illuminate\Support\Facades { * Queue the given event for broadcast. * * @param mixed $event - * @return void - * @static + * @return void + * @static */ public static function queue($event) { @@ -3648,8 +3638,8 @@ namespace Illuminate\Support\Facades { * Get a driver instance. * * @param string|null $driver - * @return mixed - * @static + * @return mixed + * @static */ public static function connection($driver = null) { @@ -3661,8 +3651,8 @@ namespace Illuminate\Support\Facades { * Get a driver instance. * * @param string|null $name - * @return mixed - * @static + * @return mixed + * @static */ public static function driver($name = null) { @@ -3674,8 +3664,8 @@ namespace Illuminate\Support\Facades { * Get a Pusher instance for the given configuration. * * @param array $config - * @return \Pusher\Pusher - * @static + * @return \Pusher\Pusher + * @static */ public static function pusher($config) { @@ -3687,8 +3677,8 @@ namespace Illuminate\Support\Facades { * Get an Ably instance for the given configuration. * * @param array $config - * @return \Ably\AblyRest - * @static + * @return \Ably\AblyRest + * @static */ public static function ably($config) { @@ -3699,8 +3689,8 @@ namespace Illuminate\Support\Facades { /** * Get the default driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -3712,8 +3702,8 @@ namespace Illuminate\Support\Facades { * Set the default driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -3725,8 +3715,8 @@ namespace Illuminate\Support\Facades { * Disconnect the given disk and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -3739,8 +3729,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Broadcasting\BroadcastManager - * @static + * @return \Illuminate\Broadcasting\BroadcastManager + * @static */ public static function extend($driver, $callback) { @@ -3751,8 +3741,8 @@ namespace Illuminate\Support\Facades { /** * Get the application instance used by the manager. * - * @return \Illuminate\Contracts\Foundation\Application - * @static + * @return \Illuminate\Contracts\Foundation\Application + * @static */ public static function getApplication() { @@ -3764,8 +3754,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Broadcasting\BroadcastManager - * @static + * @return \Illuminate\Broadcasting\BroadcastManager + * @static */ public static function setApplication($app) { @@ -3776,8 +3766,8 @@ namespace Illuminate\Support\Facades { /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Broadcasting\BroadcastManager - * @static + * @return \Illuminate\Broadcasting\BroadcastManager + * @static */ public static function forgetDrivers() { @@ -3787,8 +3777,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Bus\Dispatcher * @see \Illuminate\Support\Testing\Fakes\BusFake */ @@ -3797,8 +3785,8 @@ namespace Illuminate\Support\Facades { * Dispatch a command to its appropriate handler. * * @param mixed $command - * @return mixed - * @static + * @return mixed + * @static */ public static function dispatch($command) { @@ -3813,8 +3801,8 @@ namespace Illuminate\Support\Facades { * * @param mixed $command * @param mixed $handler - * @return mixed - * @static + * @return mixed + * @static */ public static function dispatchSync($command, $handler = null) { @@ -3827,8 +3815,8 @@ namespace Illuminate\Support\Facades { * * @param mixed $command * @param mixed $handler - * @return mixed - * @static + * @return mixed + * @static */ public static function dispatchNow($command, $handler = null) { @@ -3840,8 +3828,8 @@ namespace Illuminate\Support\Facades { * Attempt to find the batch with the given ID. * * @param string $batchId - * @return \Illuminate\Bus\Batch|null - * @static + * @return \Illuminate\Bus\Batch|null + * @static */ public static function findBatch($batchId) { @@ -3853,8 +3841,8 @@ namespace Illuminate\Support\Facades { * Create a new batch of queueable jobs. * * @param \Illuminate\Support\Collection|array|mixed $jobs - * @return \Illuminate\Bus\PendingBatch - * @static + * @return \Illuminate\Bus\PendingBatch + * @static */ public static function batch($jobs) { @@ -3866,8 +3854,8 @@ namespace Illuminate\Support\Facades { * Create a new chain of queueable jobs. * * @param \Illuminate\Support\Collection|array $jobs - * @return \Illuminate\Foundation\Bus\PendingChain - * @static + * @return \Illuminate\Foundation\Bus\PendingChain + * @static */ public static function chain($jobs) { @@ -3879,8 +3867,8 @@ namespace Illuminate\Support\Facades { * Determine if the given command has a handler. * * @param mixed $command - * @return bool - * @static + * @return bool + * @static */ public static function hasCommandHandler($command) { @@ -3892,8 +3880,8 @@ namespace Illuminate\Support\Facades { * Retrieve the handler for a command. * * @param mixed $command - * @return bool|mixed - * @static + * @return bool|mixed + * @static */ public static function getCommandHandler($command) { @@ -3905,9 +3893,9 @@ namespace Illuminate\Support\Facades { * Dispatch a command to its appropriate handler behind a queue. * * @param mixed $command - * @return mixed + * @return mixed * @throws \RuntimeException - * @static + * @static */ public static function dispatchToQueue($command) { @@ -3920,8 +3908,8 @@ namespace Illuminate\Support\Facades { * * @param mixed $command * @param mixed $handler - * @return void - * @static + * @return void + * @static */ public static function dispatchAfterResponse($command, $handler = null) { @@ -3933,8 +3921,8 @@ namespace Illuminate\Support\Facades { * Set the pipes through which commands should be piped before dispatching. * * @param array $pipes - * @return \Illuminate\Bus\Dispatcher - * @static + * @return \Illuminate\Bus\Dispatcher + * @static */ public static function pipeThrough($pipes) { @@ -3946,8 +3934,8 @@ namespace Illuminate\Support\Facades { * Map a command to a handler. * * @param array $map - * @return \Illuminate\Bus\Dispatcher - * @static + * @return \Illuminate\Bus\Dispatcher + * @static */ public static function map($map) { @@ -3959,8 +3947,8 @@ namespace Illuminate\Support\Facades { * Specify the jobs that should be dispatched instead of faked. * * @param array|string $jobsToDispatch - * @return \Illuminate\Support\Testing\Fakes\BusFake - * @static + * @return \Illuminate\Support\Testing\Fakes\BusFake + * @static */ public static function except($jobsToDispatch) { @@ -3973,8 +3961,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatched($command, $callback = null) { @@ -3987,8 +3975,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedTimes($command, $times = 1) { @@ -4001,8 +3989,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatched($command, $callback = null) { @@ -4013,8 +4001,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no jobs were dispatched. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingDispatched() { @@ -4027,8 +4015,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedSync($command, $callback = null) { @@ -4041,8 +4029,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedSyncTimes($command, $times = 1) { @@ -4055,8 +4043,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatchedSync($command, $callback = null) { @@ -4069,8 +4057,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedAfterResponse($command, $callback = null) { @@ -4083,8 +4071,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedAfterResponseTimes($command, $times = 1) { @@ -4097,8 +4085,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatchedAfterResponse($command, $callback = null) { @@ -4110,8 +4098,8 @@ namespace Illuminate\Support\Facades { * Assert if a chain of jobs was dispatched. * * @param array $expectedChain - * @return void - * @static + * @return void + * @static */ public static function assertChained($expectedChain) { @@ -4122,8 +4110,8 @@ namespace Illuminate\Support\Facades { /** * Assert no chained jobs was dispatched. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingChained() { @@ -4136,8 +4124,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $command * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedWithoutChain($command, $callback = null) { @@ -4149,8 +4137,8 @@ namespace Illuminate\Support\Facades { * Create a new assertion about a chained batch. * * @param \Closure $callback - * @return \Illuminate\Support\Testing\Fakes\ChainedBatchTruthTest - * @static + * @return \Illuminate\Support\Testing\Fakes\ChainedBatchTruthTest + * @static */ public static function chainedBatch($callback) { @@ -4162,8 +4150,8 @@ namespace Illuminate\Support\Facades { * Assert if a batch was dispatched based on a truth-test callback. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function assertBatched($callback) { @@ -4175,8 +4163,8 @@ namespace Illuminate\Support\Facades { * Assert the number of batches that have been dispatched. * * @param int $count - * @return void - * @static + * @return void + * @static */ public static function assertBatchCount($count) { @@ -4187,8 +4175,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no batched jobs were dispatched. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingBatched() { @@ -4199,8 +4187,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no jobs were dispatched, chained, or batched. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingPlaced() { @@ -4213,8 +4201,8 @@ namespace Illuminate\Support\Facades { * * @param string $command * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatched($command, $callback = null) { @@ -4227,8 +4215,8 @@ namespace Illuminate\Support\Facades { * * @param string $command * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatchedSync($command, $callback = null) { @@ -4241,8 +4229,8 @@ namespace Illuminate\Support\Facades { * * @param string $command * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatchedAfterResponse($command, $callback = null) { @@ -4254,8 +4242,8 @@ namespace Illuminate\Support\Facades { * Get all of the pending batches matching a truth-test callback. * * @param callable $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function batched($callback) { @@ -4267,8 +4255,8 @@ namespace Illuminate\Support\Facades { * Determine if there are any stored commands for a given class. * * @param string $command - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatched($command) { @@ -4280,8 +4268,8 @@ namespace Illuminate\Support\Facades { * Determine if there are any stored commands for a given class. * * @param string $command - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatchedSync($command) { @@ -4293,8 +4281,8 @@ namespace Illuminate\Support\Facades { * Determine if there are any stored commands for a given class. * * @param string $command - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatchedAfterResponse($command) { @@ -4306,8 +4294,8 @@ namespace Illuminate\Support\Facades { * Dispatch an empty job batch for testing. * * @param string $name - * @return \Illuminate\Bus\Batch - * @static + * @return \Illuminate\Bus\Batch + * @static */ public static function dispatchFakeBatch($name = '') { @@ -4319,8 +4307,8 @@ namespace Illuminate\Support\Facades { * Record the fake pending batch dispatch. * * @param \Illuminate\Bus\PendingBatch $pendingBatch - * @return \Illuminate\Bus\Batch - * @static + * @return \Illuminate\Bus\Batch + * @static */ public static function recordPendingBatch($pendingBatch) { @@ -4332,8 +4320,8 @@ namespace Illuminate\Support\Facades { * Specify if commands should be serialized and restored when being batched. * * @param bool $serializeAndRestore - * @return \Illuminate\Support\Testing\Fakes\BusFake - * @static + * @return \Illuminate\Support\Testing\Fakes\BusFake + * @static */ public static function serializeAndRestore($serializeAndRestore = true) { @@ -4344,8 +4332,8 @@ namespace Illuminate\Support\Facades { /** * Get the batches that have been dispatched. * - * @return array - * @static + * @return array + * @static */ public static function dispatchedBatches() { @@ -4355,8 +4343,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Cache\CacheManager * @see \Illuminate\Cache\Repository */ @@ -4365,8 +4351,8 @@ namespace Illuminate\Support\Facades { * Get a cache store instance by name, wrapped in a repository. * * @param string|null $name - * @return \Illuminate\Contracts\Cache\Repository - * @static + * @return \Illuminate\Contracts\Cache\Repository + * @static */ public static function store($name = null) { @@ -4378,8 +4364,8 @@ namespace Illuminate\Support\Facades { * Get a cache driver instance. * * @param string|null $driver - * @return \Illuminate\Contracts\Cache\Repository - * @static + * @return \Illuminate\Contracts\Cache\Repository + * @static */ public static function driver($driver = null) { @@ -4391,9 +4377,9 @@ namespace Illuminate\Support\Facades { * Resolve the given store. * * @param string $name - * @return \Illuminate\Contracts\Cache\Repository + * @return \Illuminate\Contracts\Cache\Repository * @throws \InvalidArgumentException - * @static + * @static */ public static function resolve($name) { @@ -4405,8 +4391,8 @@ namespace Illuminate\Support\Facades { * Build a cache repository with the given configuration. * * @param array $config - * @return \Illuminate\Cache\Repository - * @static + * @return \Illuminate\Cache\Repository + * @static */ public static function build($config) { @@ -4419,8 +4405,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Contracts\Cache\Store $store * @param array $config - * @return \Illuminate\Cache\Repository - * @static + * @return \Illuminate\Cache\Repository + * @static */ public static function repository($store, $config = []) { @@ -4431,8 +4417,8 @@ namespace Illuminate\Support\Facades { /** * Re-set the event dispatcher on all resolved cache repositories. * - * @return void - * @static + * @return void + * @static */ public static function refreshEventDispatcher() { @@ -4443,8 +4429,8 @@ namespace Illuminate\Support\Facades { /** * Get the default cache driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -4456,8 +4442,8 @@ namespace Illuminate\Support\Facades { * Set the default cache driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -4469,8 +4455,8 @@ namespace Illuminate\Support\Facades { * Unset the given driver instances. * * @param array|string|null $name - * @return \Illuminate\Cache\CacheManager - * @static + * @return \Illuminate\Cache\CacheManager + * @static */ public static function forgetDriver($name = null) { @@ -4482,8 +4468,8 @@ namespace Illuminate\Support\Facades { * Disconnect the given driver and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -4496,8 +4482,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Cache\CacheManager - * @static + * @return \Illuminate\Cache\CacheManager + * @static */ public static function extend($driver, $callback) { @@ -4509,8 +4495,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Cache\CacheManager - * @static + * @return \Illuminate\Cache\CacheManager + * @static */ public static function setApplication($app) { @@ -4522,8 +4508,8 @@ namespace Illuminate\Support\Facades { * Determine if an item exists in the cache. * * @param array|string $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -4535,8 +4521,8 @@ namespace Illuminate\Support\Facades { * Determine if an item doesn't exist in the cache. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -4549,8 +4535,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -4564,8 +4550,8 @@ namespace Illuminate\Support\Facades { * Items not found in the cache will have a null value. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function many($keys) { @@ -4576,14 +4562,14 @@ namespace Illuminate\Support\Facades { /** * Obtains multiple cache items by their unique keys. * - * @return iterable + * @return iterable * @param iterable $keys A list of keys that can be obtained in a single operation. * @param mixed $default Default value to return for keys that do not exist. * @return iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $keys is neither an array nor a Traversable, * or if any of the $keys are not a legal value. - * @static + * @static */ public static function getMultiple($keys, $default = null) { @@ -4596,8 +4582,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function pull($key, $default = null) { @@ -4611,8 +4597,8 @@ namespace Illuminate\Support\Facades { * @param array|string $key * @param mixed $value * @param \DateTimeInterface|\DateInterval|int|null $ttl - * @return bool - * @static + * @return bool + * @static */ public static function put($key, $value, $ttl = null) { @@ -4623,7 +4609,7 @@ namespace Illuminate\Support\Facades { /** * Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time. * - * @return bool + * @return bool * @param string $key The key of the item to store. * @param mixed $value The value of the item to store, must be serializable. * @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and @@ -4632,7 +4618,7 @@ namespace Illuminate\Support\Facades { * @return bool True on success and false on failure. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if the $key string is not a legal value. - * @static + * @static */ public static function set($key, $value, $ttl = null) { @@ -4645,8 +4631,8 @@ namespace Illuminate\Support\Facades { * * @param array $values * @param \DateTimeInterface|\DateInterval|int|null $ttl - * @return bool - * @static + * @return bool + * @static */ public static function putMany($values, $ttl = null) { @@ -4657,7 +4643,7 @@ namespace Illuminate\Support\Facades { /** * Persists a set of key => value pairs in the cache, with an optional TTL. * - * @return bool + * @return bool * @param iterable $values A list of key => value pairs for a multiple-set operation. * @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and * the driver supports TTL then the library may set a default value @@ -4666,7 +4652,7 @@ namespace Illuminate\Support\Facades { * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $values is neither an array nor a Traversable, * or if any of the $values are not a legal value. - * @static + * @static */ public static function setMultiple($values, $ttl = null) { @@ -4680,8 +4666,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param mixed $value * @param \DateTimeInterface|\DateInterval|int|null $ttl - * @return bool - * @static + * @return bool + * @static */ public static function add($key, $value, $ttl = null) { @@ -4694,8 +4680,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return int|bool - * @static + * @return int|bool + * @static */ public static function increment($key, $value = 1) { @@ -4708,8 +4694,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return int|bool - * @static + * @return int|bool + * @static */ public static function decrement($key, $value = 1) { @@ -4722,8 +4708,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return bool - * @static + * @return bool + * @static */ public static function forever($key, $value) { @@ -4738,8 +4724,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param \Closure|\DateTimeInterface|\DateInterval|int|null $ttl * @param \Closure(): TCacheValue $callback - * @return TCacheValue - * @static + * @return TCacheValue + * @static */ public static function remember($key, $ttl, $callback) { @@ -4753,8 +4739,8 @@ namespace Illuminate\Support\Facades { * @template TCacheValue * @param string $key * @param \Closure(): TCacheValue $callback - * @return TCacheValue - * @static + * @return TCacheValue + * @static */ public static function sear($key, $callback) { @@ -4768,8 +4754,8 @@ namespace Illuminate\Support\Facades { * @template TCacheValue * @param string $key * @param \Closure(): TCacheValue $callback - * @return TCacheValue - * @static + * @return TCacheValue + * @static */ public static function rememberForever($key, $callback) { @@ -4785,8 +4771,8 @@ namespace Illuminate\Support\Facades { * @param array{ 0: \DateTimeInterface|\DateInterval|int, 1: \DateTimeInterface|\DateInterval|int } $ttl * @param (callable(): TCacheValue) $callback * @param array{ seconds?: int, owner?: string }|null $lock - * @return TCacheValue - * @static + * @return TCacheValue + * @static */ public static function flexible($key, $ttl, $callback, $lock = null) { @@ -4798,8 +4784,8 @@ namespace Illuminate\Support\Facades { * Remove an item from the cache. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function forget($key) { @@ -4810,12 +4796,12 @@ namespace Illuminate\Support\Facades { /** * Delete an item from the cache by its unique key. * - * @return bool + * @return bool * @param string $key The unique cache key of the item to delete. * @return bool True if the item was successfully removed. False if there was an error. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if the $key string is not a legal value. - * @static + * @static */ public static function delete($key) { @@ -4826,13 +4812,13 @@ namespace Illuminate\Support\Facades { /** * Deletes multiple cache items in a single operation. * - * @return bool + * @return bool * @param iterable $keys A list of string-based keys to be deleted. * @return bool True if the items were successfully removed. False if there was an error. * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $keys is neither an array nor a Traversable, * or if any of the $keys are not a legal value. - * @static + * @static */ public static function deleteMultiple($keys) { @@ -4843,9 +4829,9 @@ namespace Illuminate\Support\Facades { /** * Wipes clean the entire cache's keys. * - * @return bool + * @return bool * @return bool True on success and false on failure. - * @static + * @static */ public static function clear() { @@ -4857,9 +4843,9 @@ namespace Illuminate\Support\Facades { * Begin executing a new tags operation if the store supports it. * * @param array|mixed $names - * @return \Illuminate\Cache\TaggedCache + * @return \Illuminate\Cache\TaggedCache * @throws \BadMethodCallException - * @static + * @static */ public static function tags($names) { @@ -4870,8 +4856,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the cache store. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getName() { @@ -4882,8 +4868,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current store supports tags. * - * @return bool - * @static + * @return bool + * @static */ public static function supportsTags() { @@ -4894,8 +4880,8 @@ namespace Illuminate\Support\Facades { /** * Get the default cache time. * - * @return int|null - * @static + * @return int|null + * @static */ public static function getDefaultCacheTime() { @@ -4907,8 +4893,8 @@ namespace Illuminate\Support\Facades { * Set the default cache time in seconds. * * @param int|null $seconds - * @return \Illuminate\Cache\Repository - * @static + * @return \Illuminate\Cache\Repository + * @static */ public static function setDefaultCacheTime($seconds) { @@ -4919,8 +4905,8 @@ namespace Illuminate\Support\Facades { /** * Get the cache store implementation. * - * @return \Illuminate\Contracts\Cache\Store - * @static + * @return \Illuminate\Contracts\Cache\Store + * @static */ public static function getStore() { @@ -4932,8 +4918,8 @@ namespace Illuminate\Support\Facades { * Set the cache store implementation. * * @param \Illuminate\Contracts\Cache\Store $store - * @return static - * @static + * @return static + * @static */ public static function setStore($store) { @@ -4944,8 +4930,8 @@ namespace Illuminate\Support\Facades { /** * Get the event dispatcher instance. * - * @return \Illuminate\Contracts\Events\Dispatcher|null - * @static + * @return \Illuminate\Contracts\Events\Dispatcher|null + * @static */ public static function getEventDispatcher() { @@ -4957,8 +4943,8 @@ namespace Illuminate\Support\Facades { * Set the event dispatcher instance. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return void - * @static + * @return void + * @static */ public static function setEventDispatcher($events) { @@ -4970,8 +4956,8 @@ namespace Illuminate\Support\Facades { * Determine if a cached value exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($key) { @@ -4983,8 +4969,8 @@ namespace Illuminate\Support\Facades { * Retrieve an item from the cache by key. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($key) { @@ -4997,8 +4983,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($key, $value) { @@ -5010,8 +4996,8 @@ namespace Illuminate\Support\Facades { * Remove an item from the cache. * * @param string $key - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($key) { @@ -5025,8 +5011,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -5038,9 +5024,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -5051,8 +5037,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -5062,8 +5048,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -5075,9 +5061,9 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -5091,8 +5077,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param int $seconds * @param string|null $owner - * @return \Illuminate\Contracts\Cache\Lock - * @static + * @return \Illuminate\Contracts\Cache\Lock + * @static */ public static function lock($name, $seconds = 0, $owner = null) { @@ -5105,8 +5091,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param string $owner - * @return \Illuminate\Contracts\Cache\Lock - * @static + * @return \Illuminate\Contracts\Cache\Lock + * @static */ public static function restoreLock($name, $owner) { @@ -5117,8 +5103,8 @@ namespace Illuminate\Support\Facades { /** * Remove all items from the cache. * - * @return bool - * @static + * @return bool + * @static */ public static function flush() { @@ -5130,8 +5116,8 @@ namespace Illuminate\Support\Facades { * Get the full path for the given cache key. * * @param string $key - * @return string - * @static + * @return string + * @static */ public static function path($key) { @@ -5142,8 +5128,8 @@ namespace Illuminate\Support\Facades { /** * Get the Filesystem instance. * - * @return \Illuminate\Filesystem\Filesystem - * @static + * @return \Illuminate\Filesystem\Filesystem + * @static */ public static function getFilesystem() { @@ -5154,8 +5140,8 @@ namespace Illuminate\Support\Facades { /** * Get the working directory of the cache. * - * @return string - * @static + * @return string + * @static */ public static function getDirectory() { @@ -5167,8 +5153,8 @@ namespace Illuminate\Support\Facades { * Set the working directory of the cache. * * @param string $directory - * @return \Illuminate\Cache\FileStore - * @static + * @return \Illuminate\Cache\FileStore + * @static */ public static function setDirectory($directory) { @@ -5180,8 +5166,8 @@ namespace Illuminate\Support\Facades { * Set the cache directory where locks should be stored. * * @param string|null $lockDirectory - * @return \Illuminate\Cache\FileStore - * @static + * @return \Illuminate\Cache\FileStore + * @static */ public static function setLockDirectory($lockDirectory) { @@ -5192,8 +5178,8 @@ namespace Illuminate\Support\Facades { /** * Get the cache key prefix. * - * @return string - * @static + * @return string + * @static */ public static function getPrefix() { @@ -5203,8 +5189,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static array run(\Closure|array $tasks) * @method static \Illuminate\Support\Defer\DeferredCallback defer(\Closure|array $tasks) * @see \Illuminate\Concurrency\ConcurrencyManager @@ -5214,8 +5198,8 @@ namespace Illuminate\Support\Facades { * Get a driver instance by name. * * @param string|null $name - * @return mixed - * @static + * @return mixed + * @static */ public static function driver($name = null) { @@ -5227,8 +5211,8 @@ namespace Illuminate\Support\Facades { * Create an instance of the process concurrency driver. * * @param array $config - * @return \Illuminate\Concurrency\ProcessDriver - * @static + * @return \Illuminate\Concurrency\ProcessDriver + * @static */ public static function createProcessDriver($config) { @@ -5240,9 +5224,9 @@ namespace Illuminate\Support\Facades { * Create an instance of the fork concurrency driver. * * @param array $config - * @return \Illuminate\Concurrency\ForkDriver + * @return \Illuminate\Concurrency\ForkDriver * @throws \RuntimeException - * @static + * @static */ public static function createForkDriver($config) { @@ -5254,8 +5238,8 @@ namespace Illuminate\Support\Facades { * Create an instance of the sync concurrency driver. * * @param array $config - * @return \Illuminate\Concurrency\SyncDriver - * @static + * @return \Illuminate\Concurrency\SyncDriver + * @static */ public static function createSyncDriver($config) { @@ -5266,8 +5250,8 @@ namespace Illuminate\Support\Facades { /** * Get the default instance name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultInstance() { @@ -5279,8 +5263,8 @@ namespace Illuminate\Support\Facades { * Set the default instance name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultInstance($name) { @@ -5292,8 +5276,8 @@ namespace Illuminate\Support\Facades { * Get the instance specific configuration. * * @param string $name - * @return array - * @static + * @return array + * @static */ public static function getInstanceConfig($name) { @@ -5305,8 +5289,8 @@ namespace Illuminate\Support\Facades { * Get an instance by name. * * @param string|null $name - * @return mixed - * @static + * @return mixed + * @static */ public static function instance($name = null) { @@ -5319,8 +5303,8 @@ namespace Illuminate\Support\Facades { * Unset the given instances. * * @param array|string|null $name - * @return \Illuminate\Concurrency\ConcurrencyManager - * @static + * @return \Illuminate\Concurrency\ConcurrencyManager + * @static */ public static function forgetInstance($name = null) { @@ -5333,8 +5317,8 @@ namespace Illuminate\Support\Facades { * Disconnect the given instance and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -5348,8 +5332,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param \Closure $callback - * @return \Illuminate\Concurrency\ConcurrencyManager - * @static + * @return \Illuminate\Concurrency\ConcurrencyManager + * @static */ public static function extend($name, $callback) { @@ -5362,8 +5346,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Concurrency\ConcurrencyManager - * @static + * @return \Illuminate\Concurrency\ConcurrencyManager + * @static */ public static function setApplication($app) { @@ -5374,8 +5358,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Config\Repository */ class Config { @@ -5383,8 +5365,8 @@ namespace Illuminate\Support\Facades { * Determine if the given configuration value exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -5397,8 +5379,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -5410,8 +5392,8 @@ namespace Illuminate\Support\Facades { * Get many configuration values. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function getMany($keys) { @@ -5424,8 +5406,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param (\Closure():(string|null))|string|null $default - * @return string - * @static + * @return string + * @static */ public static function string($key, $default = null) { @@ -5438,8 +5420,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param (\Closure():(int|null))|int|null $default - * @return int - * @static + * @return int + * @static */ public static function integer($key, $default = null) { @@ -5452,8 +5434,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param (\Closure():(float|null))|float|null $default - * @return float - * @static + * @return float + * @static */ public static function float($key, $default = null) { @@ -5466,8 +5448,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param (\Closure():(bool|null))|bool|null $default - * @return bool - * @static + * @return bool + * @static */ public static function boolean($key, $default = null) { @@ -5480,8 +5462,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param (\Closure():(array|null))|array|null $default - * @return array - * @static + * @return array + * @static */ public static function array($key, $default = null) { @@ -5494,8 +5476,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function set($key, $value = null) { @@ -5508,8 +5490,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function prepend($key, $value) { @@ -5522,8 +5504,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function push($key, $value) { @@ -5534,8 +5516,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the configuration items for the application. * - * @return array - * @static + * @return array + * @static */ public static function all() { @@ -5547,8 +5529,8 @@ namespace Illuminate\Support\Facades { * Determine if the given configuration option exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($key) { @@ -5560,8 +5542,8 @@ namespace Illuminate\Support\Facades { * Get a configuration option. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($key) { @@ -5574,8 +5556,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($key, $value) { @@ -5587,8 +5569,8 @@ namespace Illuminate\Support\Facades { * Unset a configuration option. * * @param string $key - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($key) { @@ -5602,8 +5584,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -5615,9 +5597,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -5628,8 +5610,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -5639,8 +5621,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -5649,8 +5631,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Log\Context\Repository */ class Context { @@ -5658,8 +5638,8 @@ namespace Illuminate\Support\Facades { * Determine if the given key exists. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -5671,8 +5651,8 @@ namespace Illuminate\Support\Facades { * Determine if the given key is missing. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -5684,8 +5664,8 @@ namespace Illuminate\Support\Facades { * Determine if the given key exists within the hidden context data. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasHidden($key) { @@ -5697,8 +5677,8 @@ namespace Illuminate\Support\Facades { * Determine if the given key is missing within the hidden context data. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function missingHidden($key) { @@ -5709,8 +5689,8 @@ namespace Illuminate\Support\Facades { /** * Retrieve all the context data. * - * @return array - * @static + * @return array + * @static */ public static function all() { @@ -5721,8 +5701,8 @@ namespace Illuminate\Support\Facades { /** * Retrieve all the hidden context data. * - * @return array - * @static + * @return array + * @static */ public static function allHidden() { @@ -5735,8 +5715,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -5749,8 +5729,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function getHidden($key, $default = null) { @@ -5763,8 +5743,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function pull($key, $default = null) { @@ -5777,8 +5757,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function pullHidden($key, $default = null) { @@ -5790,8 +5770,8 @@ namespace Illuminate\Support\Facades { * Retrieve only the values of the given keys. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function only($keys) { @@ -5803,8 +5783,8 @@ namespace Illuminate\Support\Facades { * Retrieve only the hidden values of the given keys. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function onlyHidden($keys) { @@ -5817,8 +5797,8 @@ namespace Illuminate\Support\Facades { * * @param string|array $key * @param mixed $value - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function add($key, $value = null) { @@ -5831,8 +5811,8 @@ namespace Illuminate\Support\Facades { * * @param string|array $key * @param mixed $value - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function addHidden($key, $value = null) { @@ -5844,8 +5824,8 @@ namespace Illuminate\Support\Facades { * Forget the given context key. * * @param string|array $key - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function forget($key) { @@ -5857,8 +5837,8 @@ namespace Illuminate\Support\Facades { * Forget the given hidden context key. * * @param string|array $key - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function forgetHidden($key) { @@ -5871,8 +5851,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function addIf($key, $value) { @@ -5885,8 +5865,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function addHiddenIf($key, $value) { @@ -5899,9 +5879,9 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $values - * @return \Illuminate\Log\Context\Repository + * @return \Illuminate\Log\Context\Repository * @throws \RuntimeException - * @static + * @static */ public static function push($key, ...$values) { @@ -5913,9 +5893,9 @@ namespace Illuminate\Support\Facades { * Pop the latest value from the key's stack. * * @param string $key - * @return mixed + * @return mixed * @throws \RuntimeException - * @static + * @static */ public static function pop($key) { @@ -5928,9 +5908,9 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $values - * @return \Illuminate\Log\Context\Repository + * @return \Illuminate\Log\Context\Repository * @throws \RuntimeException - * @static + * @static */ public static function pushHidden($key, ...$values) { @@ -5942,9 +5922,9 @@ namespace Illuminate\Support\Facades { * Pop the latest hidden value from the key's stack. * * @param string $key - * @return mixed + * @return mixed * @throws \RuntimeException - * @static + * @static */ public static function popHidden($key) { @@ -5958,9 +5938,9 @@ namespace Illuminate\Support\Facades { * @param string $key * @param mixed $value * @param bool $strict - * @return bool + * @return bool * @throws \RuntimeException - * @static + * @static */ public static function stackContains($key, $value, $strict = false) { @@ -5974,9 +5954,9 @@ namespace Illuminate\Support\Facades { * @param string $key * @param mixed $value * @param bool $strict - * @return bool + * @return bool * @throws \RuntimeException - * @static + * @static */ public static function hiddenStackContains($key, $value, $strict = false) { @@ -5987,8 +5967,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the repository is empty. * - * @return bool - * @static + * @return bool + * @static */ public static function isEmpty() { @@ -6000,8 +5980,8 @@ namespace Illuminate\Support\Facades { * Execute the given callback when context is about to be dehydrated. * * @param callable $callback - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function dehydrating($callback) { @@ -6013,8 +5993,8 @@ namespace Illuminate\Support\Facades { * Execute the given callback when context has been hydrated. * * @param callable $callback - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function hydrated($callback) { @@ -6026,8 +6006,8 @@ namespace Illuminate\Support\Facades { * Handle unserialize exceptions using the given callback. * * @param callable|null $callback - * @return static - * @static + * @return static + * @static */ public static function handleUnserializeExceptionsUsing($callback) { @@ -6038,8 +6018,8 @@ namespace Illuminate\Support\Facades { /** * Flush all context data. * - * @return \Illuminate\Log\Context\Repository - * @static + * @return \Illuminate\Log\Context\Repository + * @static */ public static function flush() { @@ -6050,9 +6030,9 @@ namespace Illuminate\Support\Facades { /** * Dehydrate the context data. * - * @internal - * @return \Illuminate\Log\Context\?array - * @static + * @internal + * @return \Illuminate\Log\Context\?array + * @static */ public static function dehydrate() { @@ -6063,11 +6043,11 @@ namespace Illuminate\Support\Facades { /** * Hydrate the context instance. * - * @internal + * @internal * @param \Illuminate\Log\Context\?array $context - * @return \Illuminate\Log\Context\Repository + * @return \Illuminate\Log\Context\Repository * @throws \RuntimeException - * @static + * @static */ public static function hydrate($context) { @@ -6083,8 +6063,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value * @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback * @param (callable($this, TWhenParameter): TWhenReturnType)|null $default - * @return $this|TWhenReturnType - * @static + * @return $this|TWhenReturnType + * @static */ public static function when($value = null, $callback = null, $default = null) { @@ -6100,8 +6080,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default - * @return $this|TUnlessReturnType - * @static + * @return $this|TUnlessReturnType + * @static */ public static function unless($value = null, $callback = null, $default = null) { @@ -6115,8 +6095,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -6128,9 +6108,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -6141,8 +6121,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -6152,8 +6132,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -6164,8 +6144,8 @@ namespace Illuminate\Support\Facades { * Restore the model from the model identifier instance. * * @param \Illuminate\Contracts\Database\ModelIdentifier $value - * @return \Illuminate\Database\Eloquent\Model - * @static + * @return \Illuminate\Database\Eloquent\Model + * @static */ public static function restoreModel($value) { @@ -6175,8 +6155,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Cookie\CookieJar */ class Cookie { @@ -6192,8 +6170,8 @@ namespace Illuminate\Support\Facades { * @param bool $httpOnly * @param bool $raw * @param string|null $sameSite - * @return \Symfony\Component\HttpFoundation\Cookie - * @static + * @return \Symfony\Component\HttpFoundation\Cookie + * @static */ public static function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null) { @@ -6212,8 +6190,8 @@ namespace Illuminate\Support\Facades { * @param bool $httpOnly * @param bool $raw * @param string|null $sameSite - * @return \Symfony\Component\HttpFoundation\Cookie - * @static + * @return \Symfony\Component\HttpFoundation\Cookie + * @static */ public static function forever($name, $value, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null) { @@ -6227,8 +6205,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string|null $path * @param string|null $domain - * @return \Symfony\Component\HttpFoundation\Cookie - * @static + * @return \Symfony\Component\HttpFoundation\Cookie + * @static */ public static function forget($name, $path = null, $domain = null) { @@ -6241,8 +6219,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string|null $path - * @return bool - * @static + * @return bool + * @static */ public static function hasQueued($key, $path = null) { @@ -6256,8 +6234,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param mixed $default * @param string|null $path - * @return \Symfony\Component\HttpFoundation\Cookie|null - * @static + * @return \Symfony\Component\HttpFoundation\Cookie|null + * @static */ public static function queued($key, $default = null, $path = null) { @@ -6269,8 +6247,8 @@ namespace Illuminate\Support\Facades { * Queue a cookie to send with the next response. * * @param mixed $parameters - * @return void - * @static + * @return void + * @static */ public static function queue(...$parameters) { @@ -6284,8 +6262,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string|null $path * @param string|null $domain - * @return void - * @static + * @return void + * @static */ public static function expire($name, $path = null, $domain = null) { @@ -6298,8 +6276,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param string|null $path - * @return void - * @static + * @return void + * @static */ public static function unqueue($name, $path = null) { @@ -6314,8 +6292,8 @@ namespace Illuminate\Support\Facades { * @param string|null $domain * @param bool|null $secure * @param string|null $sameSite - * @return \Illuminate\Cookie\CookieJar - * @static + * @return \Illuminate\Cookie\CookieJar + * @static */ public static function setDefaultPathAndDomain($path, $domain, $secure = false, $sameSite = null) { @@ -6326,8 +6304,8 @@ namespace Illuminate\Support\Facades { /** * Get the cookies which have been queued for the next request. * - * @return \Symfony\Component\HttpFoundation\Cookie[] - * @static + * @return \Symfony\Component\HttpFoundation\Cookie[] + * @static */ public static function getQueuedCookies() { @@ -6338,8 +6316,8 @@ namespace Illuminate\Support\Facades { /** * Flush the cookies which have been queued for the next request. * - * @return \Illuminate\Cookie\CookieJar - * @static + * @return \Illuminate\Cookie\CookieJar + * @static */ public static function flushQueuedCookies() { @@ -6353,8 +6331,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -6366,9 +6344,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -6379,8 +6357,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -6390,8 +6368,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -6400,8 +6378,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Encryption\Encrypter */ class Crypt { @@ -6410,8 +6386,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string $cipher - * @return bool - * @static + * @return bool + * @static */ public static function supported($key, $cipher) { @@ -6422,8 +6398,8 @@ namespace Illuminate\Support\Facades { * Create a new encryption key for the given cipher. * * @param string $cipher - * @return string - * @static + * @return string + * @static */ public static function generateKey($cipher) { @@ -6435,9 +6411,9 @@ namespace Illuminate\Support\Facades { * * @param mixed $value * @param bool $serialize - * @return string + * @return string * @throws \Illuminate\Contracts\Encryption\EncryptException - * @static + * @static */ public static function encrypt($value, $serialize = true) { @@ -6449,9 +6425,9 @@ namespace Illuminate\Support\Facades { * Encrypt a string without serialization. * * @param string $value - * @return string + * @return string * @throws \Illuminate\Contracts\Encryption\EncryptException - * @static + * @static */ public static function encryptString($value) { @@ -6464,9 +6440,9 @@ namespace Illuminate\Support\Facades { * * @param string $payload * @param bool $unserialize - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Encryption\DecryptException - * @static + * @static */ public static function decrypt($payload, $unserialize = true) { @@ -6478,9 +6454,9 @@ namespace Illuminate\Support\Facades { * Decrypt the given string without unserialization. * * @param string $payload - * @return string + * @return string * @throws \Illuminate\Contracts\Encryption\DecryptException - * @static + * @static */ public static function decryptString($payload) { @@ -6491,8 +6467,8 @@ namespace Illuminate\Support\Facades { /** * Get the encryption key that the encrypter is currently using. * - * @return string - * @static + * @return string + * @static */ public static function getKey() { @@ -6503,8 +6479,8 @@ namespace Illuminate\Support\Facades { /** * Get the current encryption key and all previous encryption keys. * - * @return array - * @static + * @return array + * @static */ public static function getAllKeys() { @@ -6515,8 +6491,8 @@ namespace Illuminate\Support\Facades { /** * Get the previous encryption keys. * - * @return array - * @static + * @return array + * @static */ public static function getPreviousKeys() { @@ -6528,8 +6504,8 @@ namespace Illuminate\Support\Facades { * Set the previous / legacy encryption keys that should be utilized if decryption fails. * * @param array $keys - * @return \Illuminate\Encryption\Encrypter - * @static + * @return \Illuminate\Encryption\Encrypter + * @static */ public static function previousKeys($keys) { @@ -6539,8 +6515,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see https://carbon.nesbot.com/docs/ * @see https://github.com/briannesbitt/Carbon/blob/master/src/Carbon/Factory.php * @method static \Illuminate\Support\Carbon create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $tz = null) @@ -6621,9 +6595,9 @@ namespace Illuminate\Support\Facades { * Use the given handler when generating dates (class name, callable, or factory). * * @param mixed $handler - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function use($handler) { @@ -6633,8 +6607,8 @@ namespace Illuminate\Support\Facades { /** * Use the default date class when generating dates. * - * @return void - * @static + * @return void + * @static */ public static function useDefault() { @@ -6645,8 +6619,8 @@ namespace Illuminate\Support\Facades { * Execute the given callable on each date creation. * * @param callable $callable - * @return void - * @static + * @return void + * @static */ public static function useCallable($callable) { @@ -6657,8 +6631,8 @@ namespace Illuminate\Support\Facades { * Use the given date type (class) when generating dates. * * @param string $dateClass - * @return void - * @static + * @return void + * @static */ public static function useClass($dateClass) { @@ -6669,8 +6643,8 @@ namespace Illuminate\Support\Facades { * Use the given Carbon factory when generating dates. * * @param object $factory - * @return void - * @static + * @return void + * @static */ public static function useFactory($factory) { @@ -6679,8 +6653,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Database\DatabaseManager */ class DB { @@ -6688,8 +6660,8 @@ namespace Illuminate\Support\Facades { * Get a database connection instance. * * @param string|null $name - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Database\Connection + * @static */ public static function connection($name = null) { @@ -6701,8 +6673,8 @@ namespace Illuminate\Support\Facades { * Build a database connection instance from the given configuration. * * @param array $config - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function build($config) { @@ -6714,8 +6686,8 @@ namespace Illuminate\Support\Facades { * Calculate the dynamic connection name for an on-demand connection based on its configuration. * * @param array $config - * @return string - * @static + * @return string + * @static */ public static function calculateDynamicConnectionName($config) { @@ -6728,8 +6700,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param array $config * @param bool $force - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function connectUsing($name, $config, $force = false) { @@ -6741,8 +6713,8 @@ namespace Illuminate\Support\Facades { * Disconnect from the given database and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -6754,8 +6726,8 @@ namespace Illuminate\Support\Facades { * Disconnect from the given database. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function disconnect($name = null) { @@ -6767,8 +6739,8 @@ namespace Illuminate\Support\Facades { * Reconnect to the given database. * * @param string|null $name - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Database\Connection + * @static */ public static function reconnect($name = null) { @@ -6781,8 +6753,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param callable $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function usingConnection($name, $callback) { @@ -6793,8 +6765,8 @@ namespace Illuminate\Support\Facades { /** * Get the default connection name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultConnection() { @@ -6806,8 +6778,8 @@ namespace Illuminate\Support\Facades { * Set the default connection name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultConnection($name) { @@ -6818,8 +6790,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the supported drivers. * - * @return string[] - * @static + * @return string[] + * @static */ public static function supportedDrivers() { @@ -6830,8 +6802,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the drivers that are actually available. * - * @return string[] - * @static + * @return string[] + * @static */ public static function availableDrivers() { @@ -6844,8 +6816,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param callable $resolver - * @return void - * @static + * @return void + * @static */ public static function extend($name, $resolver) { @@ -6857,8 +6829,8 @@ namespace Illuminate\Support\Facades { * Remove an extension connection resolver. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function forgetExtension($name) { @@ -6869,8 +6841,8 @@ namespace Illuminate\Support\Facades { /** * Return all of the created connections. * - * @return array - * @static + * @return array + * @static */ public static function getConnections() { @@ -6882,8 +6854,8 @@ namespace Illuminate\Support\Facades { * Set the database reconnector callback. * * @param callable $reconnector - * @return void - * @static + * @return void + * @static */ public static function setReconnector($reconnector) { @@ -6895,8 +6867,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Database\DatabaseManager - * @static + * @return \Illuminate\Database\DatabaseManager + * @static */ public static function setApplication($app) { @@ -6910,8 +6882,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -6923,9 +6895,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -6936,8 +6908,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -6947,8 +6919,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -6960,9 +6932,9 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -6973,8 +6945,8 @@ namespace Illuminate\Support\Facades { /** * Get a human-readable name for the given connection driver. * - * @return string - * @static + * @return string + * @static */ public static function getDriverTitle() { @@ -6988,8 +6960,8 @@ namespace Illuminate\Support\Facades { * @param string $query * @param array $bindings * @param string|null $sequence - * @return bool - * @static + * @return bool + * @static */ public static function insert($query, $bindings = [], $sequence = null) { @@ -7000,8 +6972,8 @@ namespace Illuminate\Support\Facades { /** * Get the connection's last insert ID. * - * @return string|int|null - * @static + * @return string|int|null + * @static */ public static function getLastInsertId() { @@ -7012,8 +6984,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the connected database is a MariaDB database. * - * @return bool - * @static + * @return bool + * @static */ public static function isMaria() { @@ -7024,8 +6996,8 @@ namespace Illuminate\Support\Facades { /** * Get the server version for the connection. * - * @return string - * @static + * @return string + * @static */ public static function getServerVersion() { @@ -7036,8 +7008,8 @@ namespace Illuminate\Support\Facades { /** * Get a schema builder instance for the connection. * - * @return \Illuminate\Database\Schema\MySqlBuilder - * @static + * @return \Illuminate\Database\Schema\MySqlBuilder + * @static */ public static function getSchemaBuilder() { @@ -7050,8 +7022,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Filesystem\Filesystem|null $files * @param callable|null $processFactory - * @return \Illuminate\Database\Schema\MySqlSchemaState - * @static + * @return \Illuminate\Database\Schema\MySqlSchemaState + * @static */ public static function getSchemaState($files = null, $processFactory = null) { @@ -7062,8 +7034,8 @@ namespace Illuminate\Support\Facades { /** * Set the query grammar to the default implementation. * - * @return void - * @static + * @return void + * @static */ public static function useDefaultQueryGrammar() { @@ -7075,8 +7047,8 @@ namespace Illuminate\Support\Facades { /** * Set the schema grammar to the default implementation. * - * @return void - * @static + * @return void + * @static */ public static function useDefaultSchemaGrammar() { @@ -7088,8 +7060,8 @@ namespace Illuminate\Support\Facades { /** * Set the query post processor to the default implementation. * - * @return void - * @static + * @return void + * @static */ public static function useDefaultPostProcessor() { @@ -7103,8 +7075,8 @@ namespace Illuminate\Support\Facades { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string $table * @param string|null $as - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function table($table, $as = null) { @@ -7116,8 +7088,8 @@ namespace Illuminate\Support\Facades { /** * Get a new query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function query() { @@ -7132,8 +7104,8 @@ namespace Illuminate\Support\Facades { * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return mixed - * @static + * @return mixed + * @static */ public static function selectOne($query, $bindings = [], $useReadPdo = true) { @@ -7148,9 +7120,9 @@ namespace Illuminate\Support\Facades { * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return mixed + * @return mixed * @throws \Illuminate\Database\MultipleColumnsSelectedException - * @static + * @static */ public static function scalar($query, $bindings = [], $useReadPdo = true) { @@ -7164,8 +7136,8 @@ namespace Illuminate\Support\Facades { * * @param string $query * @param array $bindings - * @return array - * @static + * @return array + * @static */ public static function selectFromWriteConnection($query, $bindings = []) { @@ -7180,8 +7152,8 @@ namespace Illuminate\Support\Facades { * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return array - * @static + * @return array + * @static */ public static function select($query, $bindings = [], $useReadPdo = true) { @@ -7196,8 +7168,8 @@ namespace Illuminate\Support\Facades { * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return array - * @static + * @return array + * @static */ public static function selectResultSets($query, $bindings = [], $useReadPdo = true) { @@ -7212,8 +7184,8 @@ namespace Illuminate\Support\Facades { * @param string $query * @param array $bindings * @param bool $useReadPdo - * @return \Generator - * @static + * @return \Generator + * @static */ public static function cursor($query, $bindings = [], $useReadPdo = true) { @@ -7227,8 +7199,8 @@ namespace Illuminate\Support\Facades { * * @param string $query * @param array $bindings - * @return int - * @static + * @return int + * @static */ public static function update($query, $bindings = []) { @@ -7242,8 +7214,8 @@ namespace Illuminate\Support\Facades { * * @param string $query * @param array $bindings - * @return int - * @static + * @return int + * @static */ public static function delete($query, $bindings = []) { @@ -7257,8 +7229,8 @@ namespace Illuminate\Support\Facades { * * @param string $query * @param array $bindings - * @return bool - * @static + * @return bool + * @static */ public static function statement($query, $bindings = []) { @@ -7272,8 +7244,8 @@ namespace Illuminate\Support\Facades { * * @param string $query * @param array $bindings - * @return int - * @static + * @return int + * @static */ public static function affectingStatement($query, $bindings = []) { @@ -7286,8 +7258,8 @@ namespace Illuminate\Support\Facades { * Run a raw, unprepared query against the PDO connection. * * @param string $query - * @return bool - * @static + * @return bool + * @static */ public static function unprepared($query) { @@ -7299,8 +7271,8 @@ namespace Illuminate\Support\Facades { /** * Get the number of open connections for the database. * - * @return int|null - * @static + * @return int|null + * @static */ public static function threadCount() { @@ -7313,8 +7285,8 @@ namespace Illuminate\Support\Facades { * Execute the given callback in "dry run" mode. * * @param \Closure $callback - * @return array - * @static + * @return array + * @static */ public static function pretend($callback) { @@ -7327,8 +7299,8 @@ namespace Illuminate\Support\Facades { * Execute the given callback without "pretending". * * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function withoutPretending($callback) { @@ -7342,8 +7314,8 @@ namespace Illuminate\Support\Facades { * * @param \PDOStatement $statement * @param array $bindings - * @return void - * @static + * @return void + * @static */ public static function bindValues($statement, $bindings) { @@ -7356,8 +7328,8 @@ namespace Illuminate\Support\Facades { * Prepare the query bindings for execution. * * @param array $bindings - * @return array - * @static + * @return array + * @static */ public static function prepareBindings($bindings) { @@ -7372,8 +7344,8 @@ namespace Illuminate\Support\Facades { * @param string $query * @param array $bindings * @param float|null $time - * @return void - * @static + * @return void + * @static */ public static function logQuery($query, $bindings, $time = null) { @@ -7387,8 +7359,8 @@ namespace Illuminate\Support\Facades { * * @param \DateTimeInterface|\Carbon\CarbonInterval|float|int $threshold * @param callable $handler - * @return void - * @static + * @return void + * @static */ public static function whenQueryingForLongerThan($threshold, $handler) { @@ -7400,8 +7372,8 @@ namespace Illuminate\Support\Facades { /** * Allow all the query duration handlers to run again, even if they have already run. * - * @return void - * @static + * @return void + * @static */ public static function allowQueryDurationHandlersToRunAgain() { @@ -7413,8 +7385,8 @@ namespace Illuminate\Support\Facades { /** * Get the duration of all run queries in milliseconds. * - * @return float - * @static + * @return float + * @static */ public static function totalQueryDuration() { @@ -7426,8 +7398,8 @@ namespace Illuminate\Support\Facades { /** * Reset the duration of all run queries. * - * @return void - * @static + * @return void + * @static */ public static function resetTotalQueryDuration() { @@ -7439,8 +7411,8 @@ namespace Illuminate\Support\Facades { /** * Reconnect to the database if a PDO connection is missing. * - * @return void - * @static + * @return void + * @static */ public static function reconnectIfMissingConnection() { @@ -7453,8 +7425,8 @@ namespace Illuminate\Support\Facades { * Register a hook to be run just before a database transaction is started. * * @param \Closure $callback - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function beforeStartingTransaction($callback) { @@ -7467,8 +7439,8 @@ namespace Illuminate\Support\Facades { * Register a hook to be run just before a database query is executed. * * @param \Closure $callback - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function beforeExecuting($callback) { @@ -7481,8 +7453,8 @@ namespace Illuminate\Support\Facades { * Register a database query listener with the connection. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function listen($callback) { @@ -7495,8 +7467,8 @@ namespace Illuminate\Support\Facades { * Get a new raw query expression. * * @param mixed $value - * @return \Illuminate\Contracts\Database\Query\Expression - * @static + * @return \Illuminate\Contracts\Database\Query\Expression + * @static */ public static function raw($value) { @@ -7510,8 +7482,8 @@ namespace Illuminate\Support\Facades { * * @param string|float|int|bool|null $value * @param bool $binary - * @return string - * @static + * @return string + * @static */ public static function escape($value, $binary = false) { @@ -7523,8 +7495,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the database connection has modified any database records. * - * @return bool - * @static + * @return bool + * @static */ public static function hasModifiedRecords() { @@ -7537,8 +7509,8 @@ namespace Illuminate\Support\Facades { * Indicate if any records have been modified. * * @param bool $value - * @return void - * @static + * @return void + * @static */ public static function recordsHaveBeenModified($value = true) { @@ -7551,8 +7523,8 @@ namespace Illuminate\Support\Facades { * Set the record modification state. * * @param bool $value - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setRecordModificationState($value) { @@ -7564,8 +7536,8 @@ namespace Illuminate\Support\Facades { /** * Reset the record modification state. * - * @return void - * @static + * @return void + * @static */ public static function forgetRecordModificationState() { @@ -7578,8 +7550,8 @@ namespace Illuminate\Support\Facades { * Indicate that the connection should use the write PDO connection for reads. * * @param bool $value - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function useWriteConnectionWhenReading($value = true) { @@ -7591,8 +7563,8 @@ namespace Illuminate\Support\Facades { /** * Get the current PDO connection. * - * @return \PDO - * @static + * @return \PDO + * @static */ public static function getPdo() { @@ -7604,8 +7576,8 @@ namespace Illuminate\Support\Facades { /** * Get the current PDO connection parameter without executing any reconnect logic. * - * @return \PDO|\Closure|null - * @static + * @return \PDO|\Closure|null + * @static */ public static function getRawPdo() { @@ -7617,8 +7589,8 @@ namespace Illuminate\Support\Facades { /** * Get the current PDO connection used for reading. * - * @return \PDO - * @static + * @return \PDO + * @static */ public static function getReadPdo() { @@ -7630,8 +7602,8 @@ namespace Illuminate\Support\Facades { /** * Get the current read PDO connection parameter without executing any reconnect logic. * - * @return \PDO|\Closure|null - * @static + * @return \PDO|\Closure|null + * @static */ public static function getRawReadPdo() { @@ -7644,8 +7616,8 @@ namespace Illuminate\Support\Facades { * Set the PDO connection. * * @param \PDO|\Closure|null $pdo - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setPdo($pdo) { @@ -7658,8 +7630,8 @@ namespace Illuminate\Support\Facades { * Set the PDO connection used for reading. * * @param \PDO|\Closure|null $pdo - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setReadPdo($pdo) { @@ -7671,8 +7643,8 @@ namespace Illuminate\Support\Facades { /** * Get the database connection name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getName() { @@ -7684,8 +7656,8 @@ namespace Illuminate\Support\Facades { /** * Get the database connection full name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getNameWithReadWriteType() { @@ -7698,8 +7670,8 @@ namespace Illuminate\Support\Facades { * Get an option from the configuration options. * * @param string|null $option - * @return mixed - * @static + * @return mixed + * @static */ public static function getConfig($option = null) { @@ -7711,8 +7683,8 @@ namespace Illuminate\Support\Facades { /** * Get the PDO driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDriverName() { @@ -7724,8 +7696,8 @@ namespace Illuminate\Support\Facades { /** * Get the query grammar used by the connection. * - * @return \Illuminate\Database\Query\Grammars\Grammar - * @static + * @return \Illuminate\Database\Query\Grammars\Grammar + * @static */ public static function getQueryGrammar() { @@ -7738,8 +7710,8 @@ namespace Illuminate\Support\Facades { * Set the query grammar used by the connection. * * @param \Illuminate\Database\Query\Grammars\Grammar $grammar - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setQueryGrammar($grammar) { @@ -7751,8 +7723,8 @@ namespace Illuminate\Support\Facades { /** * Get the schema grammar used by the connection. * - * @return \Illuminate\Database\Schema\Grammars\Grammar - * @static + * @return \Illuminate\Database\Schema\Grammars\Grammar + * @static */ public static function getSchemaGrammar() { @@ -7765,8 +7737,8 @@ namespace Illuminate\Support\Facades { * Set the schema grammar used by the connection. * * @param \Illuminate\Database\Schema\Grammars\Grammar $grammar - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setSchemaGrammar($grammar) { @@ -7778,8 +7750,8 @@ namespace Illuminate\Support\Facades { /** * Get the query post processor used by the connection. * - * @return \Illuminate\Database\Query\Processors\Processor - * @static + * @return \Illuminate\Database\Query\Processors\Processor + * @static */ public static function getPostProcessor() { @@ -7792,8 +7764,8 @@ namespace Illuminate\Support\Facades { * Set the query post processor used by the connection. * * @param \Illuminate\Database\Query\Processors\Processor $processor - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setPostProcessor($processor) { @@ -7805,8 +7777,8 @@ namespace Illuminate\Support\Facades { /** * Get the event dispatcher used by the connection. * - * @return \Illuminate\Contracts\Events\Dispatcher - * @static + * @return \Illuminate\Contracts\Events\Dispatcher + * @static */ public static function getEventDispatcher() { @@ -7819,8 +7791,8 @@ namespace Illuminate\Support\Facades { * Set the event dispatcher instance on the connection. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setEventDispatcher($events) { @@ -7832,8 +7804,8 @@ namespace Illuminate\Support\Facades { /** * Unset the event dispatcher for this connection. * - * @return void - * @static + * @return void + * @static */ public static function unsetEventDispatcher() { @@ -7846,8 +7818,8 @@ namespace Illuminate\Support\Facades { * Set the transaction manager instance on the connection. * * @param \Illuminate\Database\DatabaseTransactionsManager $manager - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setTransactionManager($manager) { @@ -7859,8 +7831,8 @@ namespace Illuminate\Support\Facades { /** * Unset the transaction manager for this connection. * - * @return void - * @static + * @return void + * @static */ public static function unsetTransactionManager() { @@ -7872,8 +7844,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the connection is in a "dry run". * - * @return bool - * @static + * @return bool + * @static */ public static function pretending() { @@ -7885,8 +7857,8 @@ namespace Illuminate\Support\Facades { /** * Get the connection query log. * - * @return array - * @static + * @return array + * @static */ public static function getQueryLog() { @@ -7898,8 +7870,8 @@ namespace Illuminate\Support\Facades { /** * Get the connection query log with embedded bindings. * - * @return array - * @static + * @return array + * @static */ public static function getRawQueryLog() { @@ -7911,8 +7883,8 @@ namespace Illuminate\Support\Facades { /** * Clear the query log. * - * @return void - * @static + * @return void + * @static */ public static function flushQueryLog() { @@ -7924,8 +7896,8 @@ namespace Illuminate\Support\Facades { /** * Enable the query log on the connection. * - * @return void - * @static + * @return void + * @static */ public static function enableQueryLog() { @@ -7937,8 +7909,8 @@ namespace Illuminate\Support\Facades { /** * Disable the query log on the connection. * - * @return void - * @static + * @return void + * @static */ public static function disableQueryLog() { @@ -7950,8 +7922,8 @@ namespace Illuminate\Support\Facades { /** * Determine whether we're logging queries. * - * @return bool - * @static + * @return bool + * @static */ public static function logging() { @@ -7963,8 +7935,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the connected database. * - * @return string - * @static + * @return string + * @static */ public static function getDatabaseName() { @@ -7977,8 +7949,8 @@ namespace Illuminate\Support\Facades { * Set the name of the connected database. * * @param string $database - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setDatabaseName($database) { @@ -7991,8 +7963,8 @@ namespace Illuminate\Support\Facades { * Set the read / write type of the connection. * * @param string|null $readWriteType - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setReadWriteType($readWriteType) { @@ -8004,8 +7976,8 @@ namespace Illuminate\Support\Facades { /** * Get the table prefix for the connection. * - * @return string - * @static + * @return string + * @static */ public static function getTablePrefix() { @@ -8018,8 +7990,8 @@ namespace Illuminate\Support\Facades { * Set the table prefix in use by the connection. * * @param string $prefix - * @return \Illuminate\Database\MySqlConnection - * @static + * @return \Illuminate\Database\MySqlConnection + * @static */ public static function setTablePrefix($prefix) { @@ -8033,8 +8005,8 @@ namespace Illuminate\Support\Facades { * * @template TGrammar of \Illuminate\Database\Grammar * @param TGrammar $grammar - * @return TGrammar - * @static + * @return TGrammar + * @static */ public static function withTablePrefix($grammar) { @@ -8047,8 +8019,8 @@ namespace Illuminate\Support\Facades { * Execute the given callback without table prefix. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function withoutTablePrefix($callback) { @@ -8062,8 +8034,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function resolverFor($driver, $callback) { @@ -8075,8 +8047,8 @@ namespace Illuminate\Support\Facades { * Get the connection resolver for the given driver. * * @param string $driver - * @return \Closure|null - * @static + * @return \Closure|null + * @static */ public static function getResolver($driver) { @@ -8085,16 +8057,14 @@ namespace Illuminate\Support\Facades { } /** - * - * * @template TReturn of mixed * * Execute a Closure within a transaction. * @param (\Closure(static): TReturn) $callback * @param int $attempts - * @return TReturn + * @return TReturn * @throws \Throwable - * @static + * @static */ public static function transaction($callback, $attempts = 1) { @@ -8106,9 +8076,9 @@ namespace Illuminate\Support\Facades { /** * Start a new database transaction. * - * @return void + * @return void * @throws \Throwable - * @static + * @static */ public static function beginTransaction() { @@ -8120,9 +8090,9 @@ namespace Illuminate\Support\Facades { /** * Commit the active database transaction. * - * @return void + * @return void * @throws \Throwable - * @static + * @static */ public static function commit() { @@ -8135,9 +8105,9 @@ namespace Illuminate\Support\Facades { * Rollback the active database transaction. * * @param int|null $toLevel - * @return void + * @return void * @throws \Throwable - * @static + * @static */ public static function rollBack($toLevel = null) { @@ -8149,8 +8119,8 @@ namespace Illuminate\Support\Facades { /** * Get the number of active transactions. * - * @return int - * @static + * @return int + * @static */ public static function transactionLevel() { @@ -8163,9 +8133,9 @@ namespace Illuminate\Support\Facades { * Execute the callback after a transaction commits. * * @param callable $callback - * @return void + * @return void * @throws \RuntimeException - * @static + * @static */ public static function afterCommit($callback) { @@ -8176,8 +8146,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Events\Dispatcher * @see \Illuminate\Support\Testing\Fakes\EventFake */ @@ -8187,8 +8155,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Events\Queued\Closure|callable|array|class-string|string $events * @param \Illuminate\Events\Queued\Closure|callable|array|class-string|null $listener - * @return void - * @static + * @return void + * @static */ public static function listen($events, $listener = null) { @@ -8200,8 +8168,8 @@ namespace Illuminate\Support\Facades { * Determine if a given event has listeners. * * @param string $eventName - * @return bool - * @static + * @return bool + * @static */ public static function hasListeners($eventName) { @@ -8213,8 +8181,8 @@ namespace Illuminate\Support\Facades { * Determine if the given event has any wildcard listeners. * * @param string $eventName - * @return bool - * @static + * @return bool + * @static */ public static function hasWildcardListeners($eventName) { @@ -8227,8 +8195,8 @@ namespace Illuminate\Support\Facades { * * @param string $event * @param object|array $payload - * @return void - * @static + * @return void + * @static */ public static function push($event, $payload = []) { @@ -8240,8 +8208,8 @@ namespace Illuminate\Support\Facades { * Flush a set of pushed events. * * @param string $event - * @return void - * @static + * @return void + * @static */ public static function flush($event) { @@ -8253,8 +8221,8 @@ namespace Illuminate\Support\Facades { * Register an event subscriber with the dispatcher. * * @param object|string $subscriber - * @return void - * @static + * @return void + * @static */ public static function subscribe($subscriber) { @@ -8267,8 +8235,8 @@ namespace Illuminate\Support\Facades { * * @param string|object $event * @param mixed $payload - * @return mixed - * @static + * @return mixed + * @static */ public static function until($event, $payload = []) { @@ -8282,8 +8250,8 @@ namespace Illuminate\Support\Facades { * @param string|object $event * @param mixed $payload * @param bool $halt - * @return array|null - * @static + * @return array|null + * @static */ public static function dispatch($event, $payload = [], $halt = false) { @@ -8295,8 +8263,8 @@ namespace Illuminate\Support\Facades { * Get all of the listeners for a given event name. * * @param string $eventName - * @return array - * @static + * @return array + * @static */ public static function getListeners($eventName) { @@ -8309,8 +8277,8 @@ namespace Illuminate\Support\Facades { * * @param \Closure|string|array $listener * @param bool $wildcard - * @return \Closure - * @static + * @return \Closure + * @static */ public static function makeListener($listener, $wildcard = false) { @@ -8323,8 +8291,8 @@ namespace Illuminate\Support\Facades { * * @param string $listener * @param bool $wildcard - * @return \Closure - * @static + * @return \Closure + * @static */ public static function createClassListener($listener, $wildcard = false) { @@ -8336,8 +8304,8 @@ namespace Illuminate\Support\Facades { * Remove a set of listeners from the dispatcher. * * @param string $event - * @return void - * @static + * @return void + * @static */ public static function forget($event) { @@ -8348,8 +8316,8 @@ namespace Illuminate\Support\Facades { /** * Forget all of the pushed listeners. * - * @return void - * @static + * @return void + * @static */ public static function forgetPushed() { @@ -8361,8 +8329,8 @@ namespace Illuminate\Support\Facades { * Set the queue resolver implementation. * * @param callable $resolver - * @return \Illuminate\Events\Dispatcher - * @static + * @return \Illuminate\Events\Dispatcher + * @static */ public static function setQueueResolver($resolver) { @@ -8374,8 +8342,8 @@ namespace Illuminate\Support\Facades { * Set the database transaction manager resolver implementation. * * @param callable $resolver - * @return \Illuminate\Events\Dispatcher - * @static + * @return \Illuminate\Events\Dispatcher + * @static */ public static function setTransactionManagerResolver($resolver) { @@ -8386,8 +8354,8 @@ namespace Illuminate\Support\Facades { /** * Gets the raw, unprepared listeners. * - * @return array - * @static + * @return array + * @static */ public static function getRawListeners() { @@ -8401,8 +8369,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -8414,9 +8382,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -8427,8 +8395,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -8438,8 +8406,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -8450,8 +8418,8 @@ namespace Illuminate\Support\Facades { * Specify the events that should be dispatched instead of faked. * * @param array|string $eventsToDispatch - * @return \Illuminate\Support\Testing\Fakes\EventFake - * @static + * @return \Illuminate\Support\Testing\Fakes\EventFake + * @static */ public static function except($eventsToDispatch) { @@ -8464,8 +8432,8 @@ namespace Illuminate\Support\Facades { * * @param string $expectedEvent * @param string|array $expectedListener - * @return void - * @static + * @return void + * @static */ public static function assertListening($expectedEvent, $expectedListener) { @@ -8478,8 +8446,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $event * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertDispatched($event, $callback = null) { @@ -8492,8 +8460,8 @@ namespace Illuminate\Support\Facades { * * @param string $event * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertDispatchedTimes($event, $times = 1) { @@ -8506,8 +8474,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $event * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotDispatched($event, $callback = null) { @@ -8518,8 +8486,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no events were dispatched. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingDispatched() { @@ -8532,8 +8500,8 @@ namespace Illuminate\Support\Facades { * * @param string $event * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dispatched($event, $callback = null) { @@ -8545,8 +8513,8 @@ namespace Illuminate\Support\Facades { * Determine if the given event has been dispatched. * * @param string $event - * @return bool - * @static + * @return bool + * @static */ public static function hasDispatched($event) { @@ -8557,8 +8525,8 @@ namespace Illuminate\Support\Facades { /** * Get the events that have been dispatched. * - * @return array - * @static + * @return array + * @static */ public static function dispatchedEvents() { @@ -8568,8 +8536,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Filesystem\Filesystem */ class File { @@ -8577,8 +8543,8 @@ namespace Illuminate\Support\Facades { * Determine if a file or directory exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function exists($path) { @@ -8590,8 +8556,8 @@ namespace Illuminate\Support\Facades { * Determine if a file or directory is missing. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function missing($path) { @@ -8604,9 +8570,9 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param bool $lock - * @return string + * @return string * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function get($path, $lock = false) { @@ -8620,9 +8586,9 @@ namespace Illuminate\Support\Facades { * @param string $path * @param int $flags * @param bool $lock - * @return array + * @return array * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function json($path, $flags = 0, $lock = false) { @@ -8634,8 +8600,8 @@ namespace Illuminate\Support\Facades { * Get contents of a file with shared access. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function sharedGet($path) { @@ -8648,9 +8614,9 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param array $data - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function getRequire($path, $data = []) { @@ -8663,9 +8629,9 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param array $data - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function requireOnce($path, $data = []) { @@ -8677,9 +8643,9 @@ namespace Illuminate\Support\Facades { * Get the contents of a file one line at a time. * * @param string $path - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException - * @static + * @static */ public static function lines($path) { @@ -8692,8 +8658,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string $algorithm - * @return string|false - * @static + * @return string|false + * @static */ public static function hash($path, $algorithm = 'md5') { @@ -8707,8 +8673,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param string $contents * @param bool $lock - * @return int|bool - * @static + * @return int|bool + * @static */ public static function put($path, $contents, $lock = false) { @@ -8722,8 +8688,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param string $content * @param int|null $mode - * @return void - * @static + * @return void + * @static */ public static function replace($path, $content, $mode = null) { @@ -8737,8 +8703,8 @@ namespace Illuminate\Support\Facades { * @param array|string $search * @param array|string $replace * @param string $path - * @return void - * @static + * @return void + * @static */ public static function replaceInFile($search, $replace, $path) { @@ -8751,8 +8717,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string $data - * @return int - * @static + * @return int + * @static */ public static function prepend($path, $data) { @@ -8766,8 +8732,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param string $data * @param bool $lock - * @return int - * @static + * @return int + * @static */ public static function append($path, $data, $lock = false) { @@ -8780,8 +8746,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param int|null $mode - * @return mixed - * @static + * @return mixed + * @static */ public static function chmod($path, $mode = null) { @@ -8793,8 +8759,8 @@ namespace Illuminate\Support\Facades { * Delete the file at a given path. * * @param string|array $paths - * @return bool - * @static + * @return bool + * @static */ public static function delete($paths) { @@ -8807,8 +8773,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string $target - * @return bool - * @static + * @return bool + * @static */ public static function move($path, $target) { @@ -8821,8 +8787,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string $target - * @return bool - * @static + * @return bool + * @static */ public static function copy($path, $target) { @@ -8835,8 +8801,8 @@ namespace Illuminate\Support\Facades { * * @param string $target * @param string $link - * @return bool|null - * @static + * @return bool|null + * @static */ public static function link($target, $link) { @@ -8849,9 +8815,9 @@ namespace Illuminate\Support\Facades { * * @param string $target * @param string $link - * @return void + * @return void * @throws \RuntimeException - * @static + * @static */ public static function relativeLink($target, $link) { @@ -8863,8 +8829,8 @@ namespace Illuminate\Support\Facades { * Extract the file name from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function name($path) { @@ -8876,8 +8842,8 @@ namespace Illuminate\Support\Facades { * Extract the trailing name component from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function basename($path) { @@ -8889,8 +8855,8 @@ namespace Illuminate\Support\Facades { * Extract the parent directory from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function dirname($path) { @@ -8902,8 +8868,8 @@ namespace Illuminate\Support\Facades { * Extract the file extension from a file path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function extension($path) { @@ -8915,9 +8881,9 @@ namespace Illuminate\Support\Facades { * Guess the file extension from the mime-type of a given file. * * @param string $path - * @return string|null + * @return string|null * @throws \RuntimeException - * @static + * @static */ public static function guessExtension($path) { @@ -8929,8 +8895,8 @@ namespace Illuminate\Support\Facades { * Get the file type of a given file. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function type($path) { @@ -8942,8 +8908,8 @@ namespace Illuminate\Support\Facades { * Get the mime-type of a given file. * * @param string $path - * @return string|false - * @static + * @return string|false + * @static */ public static function mimeType($path) { @@ -8955,8 +8921,8 @@ namespace Illuminate\Support\Facades { * Get the file size of a given file. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function size($path) { @@ -8968,8 +8934,8 @@ namespace Illuminate\Support\Facades { * Get the file's last modification time. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function lastModified($path) { @@ -8981,8 +8947,8 @@ namespace Illuminate\Support\Facades { * Determine if the given path is a directory. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function isDirectory($directory) { @@ -8995,8 +8961,8 @@ namespace Illuminate\Support\Facades { * * @param string $directory * @param bool $ignoreDotFiles - * @return bool - * @static + * @return bool + * @static */ public static function isEmptyDirectory($directory, $ignoreDotFiles = false) { @@ -9008,8 +8974,8 @@ namespace Illuminate\Support\Facades { * Determine if the given path is readable. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function isReadable($path) { @@ -9021,8 +8987,8 @@ namespace Illuminate\Support\Facades { * Determine if the given path is writable. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function isWritable($path) { @@ -9035,8 +9001,8 @@ namespace Illuminate\Support\Facades { * * @param string $firstFile * @param string $secondFile - * @return bool - * @static + * @return bool + * @static */ public static function hasSameHash($firstFile, $secondFile) { @@ -9048,8 +9014,8 @@ namespace Illuminate\Support\Facades { * Determine if the given path is a file. * * @param string $file - * @return bool - * @static + * @return bool + * @static */ public static function isFile($file) { @@ -9062,8 +9028,8 @@ namespace Illuminate\Support\Facades { * * @param string $pattern * @param int $flags - * @return array - * @static + * @return array + * @static */ public static function glob($pattern, $flags = 0) { @@ -9076,8 +9042,8 @@ namespace Illuminate\Support\Facades { * * @param string $directory * @param bool $hidden - * @return \Symfony\Component\Finder\SplFileInfo[] - * @static + * @return \Symfony\Component\Finder\SplFileInfo[] + * @static */ public static function files($directory, $hidden = false) { @@ -9090,8 +9056,8 @@ namespace Illuminate\Support\Facades { * * @param string $directory * @param bool $hidden - * @return \Symfony\Component\Finder\SplFileInfo[] - * @static + * @return \Symfony\Component\Finder\SplFileInfo[] + * @static */ public static function allFiles($directory, $hidden = false) { @@ -9103,8 +9069,8 @@ namespace Illuminate\Support\Facades { * Get all of the directories within a given directory. * * @param string $directory - * @return array - * @static + * @return array + * @static */ public static function directories($directory) { @@ -9118,8 +9084,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param int $mode * @param bool $recursive - * @return void - * @static + * @return void + * @static */ public static function ensureDirectoryExists($path, $mode = 493, $recursive = true) { @@ -9134,8 +9100,8 @@ namespace Illuminate\Support\Facades { * @param int $mode * @param bool $recursive * @param bool $force - * @return bool - * @static + * @return bool + * @static */ public static function makeDirectory($path, $mode = 493, $recursive = false, $force = false) { @@ -9149,8 +9115,8 @@ namespace Illuminate\Support\Facades { * @param string $from * @param string $to * @param bool $overwrite - * @return bool - * @static + * @return bool + * @static */ public static function moveDirectory($from, $to, $overwrite = false) { @@ -9164,8 +9130,8 @@ namespace Illuminate\Support\Facades { * @param string $directory * @param string $destination * @param int|null $options - * @return bool - * @static + * @return bool + * @static */ public static function copyDirectory($directory, $destination, $options = null) { @@ -9180,8 +9146,8 @@ namespace Illuminate\Support\Facades { * * @param string $directory * @param bool $preserve - * @return bool - * @static + * @return bool + * @static */ public static function deleteDirectory($directory, $preserve = false) { @@ -9193,8 +9159,8 @@ namespace Illuminate\Support\Facades { * Remove all of the directories within a given directory. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function deleteDirectories($directory) { @@ -9206,8 +9172,8 @@ namespace Illuminate\Support\Facades { * Empty the specified directory of all files and folders. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function cleanDirectory($directory) { @@ -9223,8 +9189,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value * @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback * @param (callable($this, TWhenParameter): TWhenReturnType)|null $default - * @return $this|TWhenReturnType - * @static + * @return $this|TWhenReturnType + * @static */ public static function when($value = null, $callback = null, $default = null) { @@ -9240,8 +9206,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default - * @return $this|TUnlessReturnType - * @static + * @return $this|TUnlessReturnType + * @static */ public static function unless($value = null, $callback = null, $default = null) { @@ -9255,8 +9221,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -9268,9 +9234,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -9281,8 +9247,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -9292,8 +9258,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -9302,8 +9268,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Auth\Access\Gate */ class Gate { @@ -9311,8 +9275,8 @@ namespace Illuminate\Support\Facades { * Determine if a given ability has been defined. * * @param string|array $ability - * @return bool - * @static + * @return bool + * @static */ public static function has($ability) { @@ -9326,9 +9290,9 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Auth\Access\Response|\Closure|bool $condition * @param string|null $message * @param string|null $code - * @return \Illuminate\Auth\Access\Response + * @return \Illuminate\Auth\Access\Response * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function allowIf($condition, $message = null, $code = null) { @@ -9342,9 +9306,9 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Auth\Access\Response|\Closure|bool $condition * @param string|null $message * @param string|null $code - * @return \Illuminate\Auth\Access\Response + * @return \Illuminate\Auth\Access\Response * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function denyIf($condition, $message = null, $code = null) { @@ -9357,9 +9321,9 @@ namespace Illuminate\Support\Facades { * * @param \UnitEnum|string $ability * @param callable|array|string $callback - * @return \Illuminate\Auth\Access\Gate + * @return \Illuminate\Auth\Access\Gate * @throws \InvalidArgumentException - * @static + * @static */ public static function define($ability, $callback) { @@ -9373,8 +9337,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string $class * @param array|null $abilities - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function resource($name, $class, $abilities = null) { @@ -9387,8 +9351,8 @@ namespace Illuminate\Support\Facades { * * @param string $class * @param string $policy - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function policy($class, $policy) { @@ -9400,8 +9364,8 @@ namespace Illuminate\Support\Facades { * Register a callback to run before all Gate checks. * * @param callable $callback - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function before($callback) { @@ -9413,8 +9377,8 @@ namespace Illuminate\Support\Facades { * Register a callback to run after all Gate checks. * * @param callable $callback - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function after($callback) { @@ -9427,8 +9391,8 @@ namespace Illuminate\Support\Facades { * * @param iterable|\UnitEnum|string $ability * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function allows($ability, $arguments = []) { @@ -9441,8 +9405,8 @@ namespace Illuminate\Support\Facades { * * @param iterable|\UnitEnum|string $ability * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function denies($ability, $arguments = []) { @@ -9455,8 +9419,8 @@ namespace Illuminate\Support\Facades { * * @param iterable|\UnitEnum|string $abilities * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function check($abilities, $arguments = []) { @@ -9469,8 +9433,8 @@ namespace Illuminate\Support\Facades { * * @param iterable|\UnitEnum|string $abilities * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function any($abilities, $arguments = []) { @@ -9483,8 +9447,8 @@ namespace Illuminate\Support\Facades { * * @param iterable|\UnitEnum|string $abilities * @param array|mixed $arguments - * @return bool - * @static + * @return bool + * @static */ public static function none($abilities, $arguments = []) { @@ -9497,9 +9461,9 @@ namespace Illuminate\Support\Facades { * * @param \UnitEnum|string $ability * @param array|mixed $arguments - * @return \Illuminate\Auth\Access\Response + * @return \Illuminate\Auth\Access\Response * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function authorize($ability, $arguments = []) { @@ -9512,8 +9476,8 @@ namespace Illuminate\Support\Facades { * * @param \UnitEnum|string $ability * @param array|mixed $arguments - * @return \Illuminate\Auth\Access\Response - * @static + * @return \Illuminate\Auth\Access\Response + * @static */ public static function inspect($ability, $arguments = []) { @@ -9526,9 +9490,9 @@ namespace Illuminate\Support\Facades { * * @param string $ability * @param array|mixed $arguments - * @return mixed + * @return mixed * @throws \Illuminate\Auth\Access\AuthorizationException - * @static + * @static */ public static function raw($ability, $arguments = []) { @@ -9540,8 +9504,8 @@ namespace Illuminate\Support\Facades { * Get a policy instance for a given class. * * @param object|string $class - * @return mixed - * @static + * @return mixed + * @static */ public static function getPolicyFor($class) { @@ -9553,8 +9517,8 @@ namespace Illuminate\Support\Facades { * Specify a callback to be used to guess policy names. * * @param callable $callback - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function guessPolicyNamesUsing($callback) { @@ -9566,9 +9530,9 @@ namespace Illuminate\Support\Facades { * Build a policy class instance of the given type. * * @param object|string $class - * @return mixed + * @return mixed * @throws \Illuminate\Contracts\Container\BindingResolutionException - * @static + * @static */ public static function resolvePolicy($class) { @@ -9580,8 +9544,8 @@ namespace Illuminate\Support\Facades { * Get a gate instance for the given user. * * @param \Illuminate\Contracts\Auth\Authenticatable|mixed $user - * @return static - * @static + * @return static + * @static */ public static function forUser($user) { @@ -9592,8 +9556,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the defined abilities. * - * @return array - * @static + * @return array + * @static */ public static function abilities() { @@ -9604,8 +9568,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the defined policies. * - * @return array - * @static + * @return array + * @static */ public static function policies() { @@ -9617,8 +9581,8 @@ namespace Illuminate\Support\Facades { * Set the default denial response for gates and policies. * * @param \Illuminate\Auth\Access\Response $response - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function defaultDenialResponse($response) { @@ -9630,8 +9594,8 @@ namespace Illuminate\Support\Facades { * Set the container instance used by the gate. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Auth\Access\Gate - * @static + * @return \Illuminate\Auth\Access\Gate + * @static */ public static function setContainer($container) { @@ -9645,8 +9609,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param string|null $message * @param int|null $code - * @return \Illuminate\Auth\Access\Response - * @static + * @return \Illuminate\Auth\Access\Response + * @static */ public static function denyWithStatus($status, $message = null, $code = null) { @@ -9659,8 +9623,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $message * @param int|null $code - * @return \Illuminate\Auth\Access\Response - * @static + * @return \Illuminate\Auth\Access\Response + * @static */ public static function denyAsNotFound($message = null, $code = null) { @@ -9670,8 +9634,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Hashing\HashManager * @see \Illuminate\Hashing\AbstractHasher */ @@ -9679,8 +9641,8 @@ namespace Illuminate\Support\Facades { /** * Create an instance of the Bcrypt hash Driver. * - * @return \Illuminate\Hashing\BcryptHasher - * @static + * @return \Illuminate\Hashing\BcryptHasher + * @static */ public static function createBcryptDriver() { @@ -9691,8 +9653,8 @@ namespace Illuminate\Support\Facades { /** * Create an instance of the Argon2i hash Driver. * - * @return \Illuminate\Hashing\ArgonHasher - * @static + * @return \Illuminate\Hashing\ArgonHasher + * @static */ public static function createArgonDriver() { @@ -9703,8 +9665,8 @@ namespace Illuminate\Support\Facades { /** * Create an instance of the Argon2id hash Driver. * - * @return \Illuminate\Hashing\Argon2IdHasher - * @static + * @return \Illuminate\Hashing\Argon2IdHasher + * @static */ public static function createArgon2idDriver() { @@ -9716,8 +9678,8 @@ namespace Illuminate\Support\Facades { * Get information about the given hashed value. * * @param string $hashedValue - * @return array - * @static + * @return array + * @static */ public static function info($hashedValue) { @@ -9730,8 +9692,8 @@ namespace Illuminate\Support\Facades { * * @param string $value * @param array $options - * @return string - * @static + * @return string + * @static */ public static function make($value, $options = []) { @@ -9745,8 +9707,8 @@ namespace Illuminate\Support\Facades { * @param string $value * @param string $hashedValue * @param array $options - * @return bool - * @static + * @return bool + * @static */ public static function check($value, $hashedValue, $options = []) { @@ -9759,8 +9721,8 @@ namespace Illuminate\Support\Facades { * * @param string $hashedValue * @param array $options - * @return bool - * @static + * @return bool + * @static */ public static function needsRehash($hashedValue, $options = []) { @@ -9772,8 +9734,8 @@ namespace Illuminate\Support\Facades { * Determine if a given string is already hashed. * * @param string $value - * @return bool - * @static + * @return bool + * @static */ public static function isHashed($value) { @@ -9784,8 +9746,8 @@ namespace Illuminate\Support\Facades { /** * Get the default driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -9797,9 +9759,9 @@ namespace Illuminate\Support\Facades { * Verifies that the configuration is less than or equal to what is configured. * * @param array $value - * @return bool - * @internal - * @static + * @return bool + * @internal + * @static */ public static function verifyConfiguration($value) { @@ -9811,9 +9773,9 @@ namespace Illuminate\Support\Facades { * Get a driver instance. * * @param string|null $driver - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function driver($driver = null) { @@ -9827,8 +9789,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Hashing\HashManager - * @static + * @return \Illuminate\Hashing\HashManager + * @static */ public static function extend($driver, $callback) { @@ -9840,8 +9802,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { @@ -9853,8 +9815,8 @@ namespace Illuminate\Support\Facades { /** * Get the container instance used by the manager. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { @@ -9867,8 +9829,8 @@ namespace Illuminate\Support\Facades { * Set the container instance used by the manager. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Hashing\HashManager - * @static + * @return \Illuminate\Hashing\HashManager + * @static */ public static function setContainer($container) { @@ -9880,8 +9842,8 @@ namespace Illuminate\Support\Facades { /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Hashing\HashManager - * @static + * @return \Illuminate\Hashing\HashManager + * @static */ public static function forgetDrivers() { @@ -9892,8 +9854,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static \Illuminate\Http\Client\PendingRequest baseUrl(string $url) * @method static \Illuminate\Http\Client\PendingRequest withBody(\Psr\Http\Message\StreamInterface|string $content, string $contentType = 'application/json') * @method static \Illuminate\Http\Client\PendingRequest asJson() @@ -9963,8 +9923,8 @@ namespace Illuminate\Support\Facades { * Add middleware to apply to every request. * * @param callable $middleware - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function globalMiddleware($middleware) { @@ -9976,8 +9936,8 @@ namespace Illuminate\Support\Facades { * Add request middleware to apply to every request. * * @param callable $middleware - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function globalRequestMiddleware($middleware) { @@ -9989,8 +9949,8 @@ namespace Illuminate\Support\Facades { * Add response middleware to apply to every request. * * @param callable $middleware - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function globalResponseMiddleware($middleware) { @@ -10002,8 +9962,8 @@ namespace Illuminate\Support\Facades { * Set the options to apply to every request. * * @param \Closure|array $options - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function globalOptions($options) { @@ -10017,8 +9977,8 @@ namespace Illuminate\Support\Facades { * @param array|string|null $body * @param int $status * @param array $headers - * @return \GuzzleHttp\Promise\PromiseInterface - * @static + * @return \GuzzleHttp\Promise\PromiseInterface + * @static */ public static function response($body = null, $status = 200, $headers = []) { @@ -10029,8 +9989,8 @@ namespace Illuminate\Support\Facades { * Create a new connection exception for use during stubbing. * * @param string|null $message - * @return \GuzzleHttp\Promise\PromiseInterface - * @static + * @return \GuzzleHttp\Promise\PromiseInterface + * @static */ public static function failedConnection($message = null) { @@ -10041,8 +10001,8 @@ namespace Illuminate\Support\Facades { * Get an invokable object that returns a sequence of responses in order for use during stubbing. * * @param array $responses - * @return \Illuminate\Http\Client\ResponseSequence - * @static + * @return \Illuminate\Http\Client\ResponseSequence + * @static */ public static function sequence($responses = []) { @@ -10054,8 +10014,8 @@ namespace Illuminate\Support\Facades { * Register a stub callable that will intercept requests and be able to return stub responses. * * @param callable|array|null $callback - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function fake($callback = null) { @@ -10067,8 +10027,8 @@ namespace Illuminate\Support\Facades { * Register a response sequence for the given URL pattern. * * @param string $url - * @return \Illuminate\Http\Client\ResponseSequence - * @static + * @return \Illuminate\Http\Client\ResponseSequence + * @static */ public static function fakeSequence($url = '*') { @@ -10081,8 +10041,8 @@ namespace Illuminate\Support\Facades { * * @param string $url * @param \Illuminate\Http\Client\Response|\GuzzleHttp\Promise\PromiseInterface|callable|int|string|array $callback - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function stubUrl($url, $callback) { @@ -10094,8 +10054,8 @@ namespace Illuminate\Support\Facades { * Indicate that an exception should be thrown if any request is not faked. * * @param bool $prevent - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function preventStrayRequests($prevent = true) { @@ -10106,8 +10066,8 @@ namespace Illuminate\Support\Facades { /** * Determine if stray requests are being prevented. * - * @return bool - * @static + * @return bool + * @static */ public static function preventingStrayRequests() { @@ -10118,8 +10078,8 @@ namespace Illuminate\Support\Facades { /** * Indicate that an exception should not be thrown if any request is not faked. * - * @return \Illuminate\Http\Client\Factory - * @static + * @return \Illuminate\Http\Client\Factory + * @static */ public static function allowStrayRequests() { @@ -10132,8 +10092,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Http\Client\Request $request * @param \Illuminate\Http\Client\Response|null $response - * @return void - * @static + * @return void + * @static */ public static function recordRequestResponsePair($request, $response) { @@ -10145,8 +10105,8 @@ namespace Illuminate\Support\Facades { * Assert that a request / response pair was recorded matching a given truth test. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function assertSent($callback) { @@ -10158,8 +10118,8 @@ namespace Illuminate\Support\Facades { * Assert that the given request was sent in the given order. * * @param array $callbacks - * @return void - * @static + * @return void + * @static */ public static function assertSentInOrder($callbacks) { @@ -10171,8 +10131,8 @@ namespace Illuminate\Support\Facades { * Assert that a request / response pair was not recorded matching a given truth test. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotSent($callback) { @@ -10183,8 +10143,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no request / response pair was recorded. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingSent() { @@ -10196,8 +10156,8 @@ namespace Illuminate\Support\Facades { * Assert how many requests have been recorded. * * @param int $count - * @return void - * @static + * @return void + * @static */ public static function assertSentCount($count) { @@ -10208,8 +10168,8 @@ namespace Illuminate\Support\Facades { /** * Assert that every created response sequence is empty. * - * @return void - * @static + * @return void + * @static */ public static function assertSequencesAreEmpty() { @@ -10221,8 +10181,8 @@ namespace Illuminate\Support\Facades { * Get a collection of the request / response pairs matching the given truth test. * * @param callable $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function recorded($callback = null) { @@ -10233,8 +10193,8 @@ namespace Illuminate\Support\Facades { /** * Create a new pending request instance for this factory. * - * @return \Illuminate\Http\Client\PendingRequest - * @static + * @return \Illuminate\Http\Client\PendingRequest + * @static */ public static function createPendingRequest() { @@ -10245,8 +10205,8 @@ namespace Illuminate\Support\Facades { /** * Get the current event dispatcher implementation. * - * @return \Illuminate\Contracts\Events\Dispatcher|null - * @static + * @return \Illuminate\Contracts\Events\Dispatcher|null + * @static */ public static function getDispatcher() { @@ -10257,8 +10217,8 @@ namespace Illuminate\Support\Facades { /** * Get the array of global middleware. * - * @return array - * @static + * @return array + * @static */ public static function getGlobalMiddleware() { @@ -10272,8 +10232,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -10285,9 +10245,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -10298,8 +10258,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -10309,8 +10269,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -10322,9 +10282,9 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -10334,8 +10294,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Translation\Translator */ class Lang { @@ -10344,8 +10302,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string|null $locale - * @return bool - * @static + * @return bool + * @static */ public static function hasForLocale($key, $locale = null) { @@ -10359,8 +10317,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param string|null $locale * @param bool $fallback - * @return bool - * @static + * @return bool + * @static */ public static function has($key, $locale = null, $fallback = true) { @@ -10375,8 +10333,8 @@ namespace Illuminate\Support\Facades { * @param array $replace * @param string|null $locale * @param bool $fallback - * @return string|array - * @static + * @return string|array + * @static */ public static function get($key, $replace = [], $locale = null, $fallback = true) { @@ -10391,8 +10349,8 @@ namespace Illuminate\Support\Facades { * @param \Countable|int|float|array $number * @param array $replace * @param string|null $locale - * @return string - * @static + * @return string + * @static */ public static function choice($key, $number, $replace = [], $locale = null) { @@ -10406,8 +10364,8 @@ namespace Illuminate\Support\Facades { * @param array $lines * @param string $locale * @param string $namespace - * @return void - * @static + * @return void + * @static */ public static function addLines($lines, $locale, $namespace = '*') { @@ -10421,8 +10379,8 @@ namespace Illuminate\Support\Facades { * @param string $namespace * @param string $group * @param string $locale - * @return void - * @static + * @return void + * @static */ public static function load($namespace, $group, $locale) { @@ -10434,8 +10392,8 @@ namespace Illuminate\Support\Facades { * Register a callback that is responsible for handling missing translation keys. * * @param callable|null $callback - * @return static - * @static + * @return static + * @static */ public static function handleMissingKeysUsing($callback) { @@ -10448,8 +10406,8 @@ namespace Illuminate\Support\Facades { * * @param string $namespace * @param string $hint - * @return void - * @static + * @return void + * @static */ public static function addNamespace($namespace, $hint) { @@ -10461,8 +10419,8 @@ namespace Illuminate\Support\Facades { * Add a new path to the loader. * * @param string $path - * @return void - * @static + * @return void + * @static */ public static function addPath($path) { @@ -10474,8 +10432,8 @@ namespace Illuminate\Support\Facades { * Add a new JSON path to the loader. * * @param string $path - * @return void - * @static + * @return void + * @static */ public static function addJsonPath($path) { @@ -10487,8 +10445,8 @@ namespace Illuminate\Support\Facades { * Parse a key into namespace, group, and item. * * @param string $key - * @return array - * @static + * @return array + * @static */ public static function parseKey($key) { @@ -10500,8 +10458,8 @@ namespace Illuminate\Support\Facades { * Specify a callback that should be invoked to determined the applicable locale array. * * @param callable $callback - * @return void - * @static + * @return void + * @static */ public static function determineLocalesUsing($callback) { @@ -10512,8 +10470,8 @@ namespace Illuminate\Support\Facades { /** * Get the message selector instance. * - * @return \Illuminate\Translation\MessageSelector - * @static + * @return \Illuminate\Translation\MessageSelector + * @static */ public static function getSelector() { @@ -10525,8 +10483,8 @@ namespace Illuminate\Support\Facades { * Set the message selector instance. * * @param \Illuminate\Translation\MessageSelector $selector - * @return void - * @static + * @return void + * @static */ public static function setSelector($selector) { @@ -10537,8 +10495,8 @@ namespace Illuminate\Support\Facades { /** * Get the language line loader implementation. * - * @return \Illuminate\Contracts\Translation\Loader - * @static + * @return \Illuminate\Contracts\Translation\Loader + * @static */ public static function getLoader() { @@ -10549,8 +10507,8 @@ namespace Illuminate\Support\Facades { /** * Get the default locale being used. * - * @return string - * @static + * @return string + * @static */ public static function locale() { @@ -10561,8 +10519,8 @@ namespace Illuminate\Support\Facades { /** * Get the default locale being used. * - * @return string - * @static + * @return string + * @static */ public static function getLocale() { @@ -10574,9 +10532,9 @@ namespace Illuminate\Support\Facades { * Set the default locale. * * @param string $locale - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function setLocale($locale) { @@ -10587,8 +10545,8 @@ namespace Illuminate\Support\Facades { /** * Get the fallback locale being used. * - * @return string - * @static + * @return string + * @static */ public static function getFallback() { @@ -10600,8 +10558,8 @@ namespace Illuminate\Support\Facades { * Set the fallback locale being used. * * @param string $fallback - * @return void - * @static + * @return void + * @static */ public static function setFallback($fallback) { @@ -10613,8 +10571,8 @@ namespace Illuminate\Support\Facades { * Set the loaded translation groups. * * @param array $loaded - * @return void - * @static + * @return void + * @static */ public static function setLoaded($loaded) { @@ -10627,8 +10585,8 @@ namespace Illuminate\Support\Facades { * * @param callable|string $class * @param callable|null $handler - * @return void - * @static + * @return void + * @static */ public static function stringable($class, $handler = null) { @@ -10641,8 +10599,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param array $parsed - * @return void - * @static + * @return void + * @static */ public static function setParsedKey($key, $parsed) { @@ -10654,8 +10612,8 @@ namespace Illuminate\Support\Facades { /** * Flush the cache of parsed keys. * - * @return void - * @static + * @return void + * @static */ public static function flushParsedKeys() { @@ -10670,8 +10628,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -10683,9 +10641,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -10696,8 +10654,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -10707,8 +10665,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -10717,8 +10675,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static void write(string $level, \Illuminate\Contracts\Support\Arrayable|\Illuminate\Contracts\Support\Jsonable|\Illuminate\Support\Stringable|array|string $message, array $context = []) * @method static \Illuminate\Log\Logger withContext(array $context = []) * @method static void listen(\Closure $callback) @@ -10734,8 +10690,8 @@ namespace Illuminate\Support\Facades { * Build an on-demand log channel. * * @param array $config - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function build($config) { @@ -10748,8 +10704,8 @@ namespace Illuminate\Support\Facades { * * @param array $channels * @param string|null $channel - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function stack($channels, $channel = null) { @@ -10761,8 +10717,8 @@ namespace Illuminate\Support\Facades { * Get a log channel instance. * * @param string|null $channel - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function channel($channel = null) { @@ -10774,8 +10730,8 @@ namespace Illuminate\Support\Facades { * Get a log driver instance. * * @param string|null $driver - * @return \Psr\Log\LoggerInterface - * @static + * @return \Psr\Log\LoggerInterface + * @static */ public static function driver($driver = null) { @@ -10787,8 +10743,8 @@ namespace Illuminate\Support\Facades { * Share context across channels and stacks. * * @param array $context - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function shareContext($context) { @@ -10799,8 +10755,8 @@ namespace Illuminate\Support\Facades { /** * The context shared across channels and stacks. * - * @return array - * @static + * @return array + * @static */ public static function sharedContext() { @@ -10811,8 +10767,8 @@ namespace Illuminate\Support\Facades { /** * Flush the log context on all currently resolved channels. * - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function withoutContext() { @@ -10823,8 +10779,8 @@ namespace Illuminate\Support\Facades { /** * Flush the shared context. * - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function flushSharedContext() { @@ -10835,8 +10791,8 @@ namespace Illuminate\Support\Facades { /** * Get the default log driver name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getDefaultDriver() { @@ -10848,8 +10804,8 @@ namespace Illuminate\Support\Facades { * Set the default log driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -10862,8 +10818,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function extend($driver, $callback) { @@ -10875,8 +10831,8 @@ namespace Illuminate\Support\Facades { * Unset the given channel instance. * * @param string|null $driver - * @return void - * @static + * @return void + * @static */ public static function forgetChannel($driver = null) { @@ -10887,8 +10843,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the resolved log channels. * - * @return array - * @static + * @return array + * @static */ public static function getChannels() { @@ -10901,8 +10857,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function emergency($message, $context = []) { @@ -10918,8 +10874,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function alert($message, $context = []) { @@ -10934,8 +10890,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function critical($message, $context = []) { @@ -10949,8 +10905,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function error($message, $context = []) { @@ -10966,8 +10922,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function warning($message, $context = []) { @@ -10980,8 +10936,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function notice($message, $context = []) { @@ -10996,8 +10952,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function info($message, $context = []) { @@ -11010,8 +10966,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function debug($message, $context = []) { @@ -11025,8 +10981,8 @@ namespace Illuminate\Support\Facades { * @param mixed $level * @param string|\Stringable $message * @param array $context - * @return void - * @static + * @return void + * @static */ public static function log($level, $message, $context = []) { @@ -11038,8 +10994,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Log\LogManager - * @static + * @return \Illuminate\Log\LogManager + * @static */ public static function setApplication($app) { @@ -11049,8 +11005,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static void alwaysFrom(string $address, string|null $name = null) * @method static void alwaysReplyTo(string $address, string|null $name = null) * @method static void alwaysReturnPath(string $address) @@ -11077,8 +11031,8 @@ namespace Illuminate\Support\Facades { * Get a mailer instance by name. * * @param string|null $name - * @return \Illuminate\Contracts\Mail\Mailer - * @static + * @return \Illuminate\Contracts\Mail\Mailer + * @static */ public static function mailer($name = null) { @@ -11090,8 +11044,8 @@ namespace Illuminate\Support\Facades { * Get a mailer driver instance. * * @param string|null $driver - * @return \Illuminate\Mail\Mailer - * @static + * @return \Illuminate\Mail\Mailer + * @static */ public static function driver($driver = null) { @@ -11103,8 +11057,8 @@ namespace Illuminate\Support\Facades { * Build a new mailer instance. * * @param array $config - * @return \Illuminate\Mail\Mailer - * @static + * @return \Illuminate\Mail\Mailer + * @static */ public static function build($config) { @@ -11116,9 +11070,9 @@ namespace Illuminate\Support\Facades { * Create a new transport instance. * * @param array $config - * @return \Symfony\Component\Mailer\Transport\TransportInterface + * @return \Symfony\Component\Mailer\Transport\TransportInterface * @throws \InvalidArgumentException - * @static + * @static */ public static function createSymfonyTransport($config) { @@ -11129,8 +11083,8 @@ namespace Illuminate\Support\Facades { /** * Get the default mail driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -11142,8 +11096,8 @@ namespace Illuminate\Support\Facades { * Set the default mail driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -11155,8 +11109,8 @@ namespace Illuminate\Support\Facades { * Disconnect the given mailer and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -11169,8 +11123,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Mail\MailManager - * @static + * @return \Illuminate\Mail\MailManager + * @static */ public static function extend($driver, $callback) { @@ -11181,8 +11135,8 @@ namespace Illuminate\Support\Facades { /** * Get the application instance used by the manager. * - * @return \Illuminate\Contracts\Foundation\Application - * @static + * @return \Illuminate\Contracts\Foundation\Application + * @static */ public static function getApplication() { @@ -11194,8 +11148,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Mail\MailManager - * @static + * @return \Illuminate\Mail\MailManager + * @static */ public static function setApplication($app) { @@ -11206,8 +11160,8 @@ namespace Illuminate\Support\Facades { /** * Forget all of the resolved mailer instances. * - * @return \Illuminate\Mail\MailManager - * @static + * @return \Illuminate\Mail\MailManager + * @static */ public static function forgetMailers() { @@ -11220,8 +11174,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $mailable * @param callable|array|string|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertSent($mailable, $callback = null) { @@ -11234,8 +11188,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $mailable * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotOutgoing($mailable, $callback = null) { @@ -11248,8 +11202,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $mailable * @param callable|array|string|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotSent($mailable, $callback = null) { @@ -11260,8 +11214,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no mailables were sent or queued to be sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingOutgoing() { @@ -11272,8 +11226,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no mailables were sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingSent() { @@ -11286,8 +11240,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $mailable * @param callable|array|string|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertQueued($mailable, $callback = null) { @@ -11300,8 +11254,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $mailable * @param callable|array|string|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotQueued($mailable, $callback = null) { @@ -11312,8 +11266,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no mailables were queued. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingQueued() { @@ -11325,8 +11279,8 @@ namespace Illuminate\Support\Facades { * Assert the total number of mailables that were sent. * * @param int $count - * @return void - * @static + * @return void + * @static */ public static function assertSentCount($count) { @@ -11338,8 +11292,8 @@ namespace Illuminate\Support\Facades { * Assert the total number of mailables that were queued. * * @param int $count - * @return void - * @static + * @return void + * @static */ public static function assertQueuedCount($count) { @@ -11351,8 +11305,8 @@ namespace Illuminate\Support\Facades { * Assert the total number of mailables that were sent or queued. * * @param int $count - * @return void - * @static + * @return void + * @static */ public static function assertOutgoingCount($count) { @@ -11365,8 +11319,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $mailable * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function sent($mailable, $callback = null) { @@ -11378,8 +11332,8 @@ namespace Illuminate\Support\Facades { * Determine if the given mailable has been sent. * * @param string $mailable - * @return bool - * @static + * @return bool + * @static */ public static function hasSent($mailable) { @@ -11392,8 +11346,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $mailable * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function queued($mailable, $callback = null) { @@ -11405,8 +11359,8 @@ namespace Illuminate\Support\Facades { * Determine if the given mailable has been queued. * * @param string $mailable - * @return bool - * @static + * @return bool + * @static */ public static function hasQueued($mailable) { @@ -11418,8 +11372,8 @@ namespace Illuminate\Support\Facades { * Begin the process of mailing a mailable class instance. * * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static + * @return \Illuminate\Mail\PendingMail + * @static */ public static function to($users) { @@ -11431,8 +11385,8 @@ namespace Illuminate\Support\Facades { * Begin the process of mailing a mailable class instance. * * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static + * @return \Illuminate\Mail\PendingMail + * @static */ public static function cc($users) { @@ -11444,8 +11398,8 @@ namespace Illuminate\Support\Facades { * Begin the process of mailing a mailable class instance. * * @param mixed $users - * @return \Illuminate\Mail\PendingMail - * @static + * @return \Illuminate\Mail\PendingMail + * @static */ public static function bcc($users) { @@ -11458,8 +11412,8 @@ namespace Illuminate\Support\Facades { * * @param string $text * @param \Closure|string $callback - * @return void - * @static + * @return void + * @static */ public static function raw($text, $callback) { @@ -11473,8 +11427,8 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Contracts\Mail\Mailable|string|array $view * @param array $data * @param \Closure|string|null $callback - * @return mixed|void - * @static + * @return mixed|void + * @static */ public static function send($view, $data = [], $callback = null) { @@ -11488,8 +11442,8 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Contracts\Mail\Mailable|string|array $mailable * @param array $data * @param \Closure|string|null $callback - * @return void - * @static + * @return void + * @static */ public static function sendNow($mailable, $data = [], $callback = null) { @@ -11502,8 +11456,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Contracts\Mail\Mailable|string|array $view * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function queue($view, $queue = null) { @@ -11517,8 +11471,8 @@ namespace Illuminate\Support\Facades { * @param \DateTimeInterface|\DateInterval|int $delay * @param \Illuminate\Contracts\Mail\Mailable|string|array $view * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function later($delay, $view, $queue = null) { @@ -11528,8 +11482,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Notifications\ChannelManager * @see \Illuminate\Support\Testing\Fakes\NotificationFake */ @@ -11539,8 +11491,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Support\Collection|array|mixed $notifiables * @param mixed $notification - * @return void - * @static + * @return void + * @static */ public static function send($notifiables, $notification) { @@ -11554,8 +11506,8 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Support\Collection|array|mixed $notifiables * @param mixed $notification * @param array|null $channels - * @return void - * @static + * @return void + * @static */ public static function sendNow($notifiables, $notification, $channels = null) { @@ -11567,8 +11519,8 @@ namespace Illuminate\Support\Facades { * Get a channel instance. * * @param string|null $name - * @return mixed - * @static + * @return mixed + * @static */ public static function channel($name = null) { @@ -11579,8 +11531,8 @@ namespace Illuminate\Support\Facades { /** * Get the default channel driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -11591,8 +11543,8 @@ namespace Illuminate\Support\Facades { /** * Get the default channel driver name. * - * @return string - * @static + * @return string + * @static */ public static function deliversVia() { @@ -11604,8 +11556,8 @@ namespace Illuminate\Support\Facades { * Set the default channel driver name. * * @param string $channel - * @return void - * @static + * @return void + * @static */ public static function deliverVia($channel) { @@ -11617,8 +11569,8 @@ namespace Illuminate\Support\Facades { * Set the locale of notifications. * * @param string $locale - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function locale($locale) { @@ -11630,9 +11582,9 @@ namespace Illuminate\Support\Facades { * Get a driver instance. * * @param string|null $driver - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function driver($driver = null) { @@ -11646,8 +11598,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function extend($driver, $callback) { @@ -11659,8 +11611,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { @@ -11672,8 +11624,8 @@ namespace Illuminate\Support\Facades { /** * Get the container instance used by the manager. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { @@ -11686,8 +11638,8 @@ namespace Illuminate\Support\Facades { * Set the container instance used by the manager. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function setContainer($container) { @@ -11699,8 +11651,8 @@ namespace Illuminate\Support\Facades { /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Notifications\ChannelManager - * @static + * @return \Illuminate\Notifications\ChannelManager + * @static */ public static function forgetDrivers() { @@ -11714,9 +11666,9 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $notification * @param callable|null $callback - * @return void + * @return void * @throws \Exception - * @static + * @static */ public static function assertSentOnDemand($notification, $callback = null) { @@ -11730,9 +11682,9 @@ namespace Illuminate\Support\Facades { * @param mixed $notifiable * @param string|\Closure $notification * @param callable|null $callback - * @return void + * @return void * @throws \Exception - * @static + * @static */ public static function assertSentTo($notifiable, $notification, $callback = null) { @@ -11745,8 +11697,8 @@ namespace Illuminate\Support\Facades { * * @param string $notification * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertSentOnDemandTimes($notification, $times = 1) { @@ -11760,8 +11712,8 @@ namespace Illuminate\Support\Facades { * @param mixed $notifiable * @param string $notification * @param int $times - * @return void - * @static + * @return void + * @static */ public static function assertSentToTimes($notifiable, $notification, $times = 1) { @@ -11775,9 +11727,9 @@ namespace Illuminate\Support\Facades { * @param mixed $notifiable * @param string|\Closure $notification * @param callable|null $callback - * @return void + * @return void * @throws \Exception - * @static + * @static */ public static function assertNotSentTo($notifiable, $notification, $callback = null) { @@ -11788,8 +11740,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no notifications were sent. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingSent() { @@ -11801,9 +11753,9 @@ namespace Illuminate\Support\Facades { * Assert that no notifications were sent to the given notifiable. * * @param mixed $notifiable - * @return void + * @return void * @throws \Exception - * @static + * @static */ public static function assertNothingSentTo($notifiable) { @@ -11816,8 +11768,8 @@ namespace Illuminate\Support\Facades { * * @param string $notification * @param int $expectedCount - * @return void - * @static + * @return void + * @static */ public static function assertSentTimes($notification, $expectedCount) { @@ -11829,8 +11781,8 @@ namespace Illuminate\Support\Facades { * Assert the total count of notification that were sent. * * @param int $expectedCount - * @return void - * @static + * @return void + * @static */ public static function assertCount($expectedCount) { @@ -11844,8 +11796,8 @@ namespace Illuminate\Support\Facades { * @param mixed $notifiable * @param string $notification * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function sent($notifiable, $notification, $callback = null) { @@ -11858,8 +11810,8 @@ namespace Illuminate\Support\Facades { * * @param mixed $notifiable * @param string $notification - * @return bool - * @static + * @return bool + * @static */ public static function hasSent($notifiable, $notification) { @@ -11871,8 +11823,8 @@ namespace Illuminate\Support\Facades { * Specify if notification should be serialized and restored when being "pushed" to the queue. * * @param bool $serializeAndRestore - * @return \Illuminate\Support\Testing\Fakes\NotificationFake - * @static + * @return \Illuminate\Support\Testing\Fakes\NotificationFake + * @static */ public static function serializeAndRestore($serializeAndRestore = true) { @@ -11883,8 +11835,8 @@ namespace Illuminate\Support\Facades { /** * Get the notifications that have been sent. * - * @return array - * @static + * @return array + * @static */ public static function sentNotifications() { @@ -11898,8 +11850,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -11911,9 +11863,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -11924,8 +11876,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -11935,8 +11887,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -11945,8 +11897,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static string sendResetLink(array $credentials, \Closure|null $callback = null) * @method static mixed reset(array $credentials, \Closure $callback) * @method static \Illuminate\Contracts\Auth\CanResetPassword|null getUser(array $credentials) @@ -11963,8 +11913,8 @@ namespace Illuminate\Support\Facades { * Attempt to get the broker from the local cache. * * @param string|null $name - * @return \Illuminate\Contracts\Auth\PasswordBroker - * @static + * @return \Illuminate\Contracts\Auth\PasswordBroker + * @static */ public static function broker($name = null) { @@ -11975,8 +11925,8 @@ namespace Illuminate\Support\Facades { /** * Get the default password broker name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -11988,8 +11938,8 @@ namespace Illuminate\Support\Facades { * Set the default password broker name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -11999,8 +11949,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static \Illuminate\Process\PendingProcess command(array|string $command) * @method static \Illuminate\Process\PendingProcess path(string $path) * @method static \Illuminate\Process\PendingProcess timeout(int $timeout) @@ -12027,8 +11975,8 @@ namespace Illuminate\Support\Facades { * @param array|string $output * @param array|string $errorOutput * @param int $exitCode - * @return \Illuminate\Process\FakeProcessResult - * @static + * @return \Illuminate\Process\FakeProcessResult + * @static */ public static function result($output = '', $errorOutput = '', $exitCode = 0) { @@ -12039,8 +11987,8 @@ namespace Illuminate\Support\Facades { /** * Begin describing a fake process lifecycle. * - * @return \Illuminate\Process\FakeProcessDescription - * @static + * @return \Illuminate\Process\FakeProcessDescription + * @static */ public static function describe() { @@ -12052,8 +12000,8 @@ namespace Illuminate\Support\Facades { * Begin describing a fake process sequence. * * @param array $processes - * @return \Illuminate\Process\FakeProcessSequence - * @static + * @return \Illuminate\Process\FakeProcessSequence + * @static */ public static function sequence($processes = []) { @@ -12065,8 +12013,8 @@ namespace Illuminate\Support\Facades { * Indicate that the process factory should fake processes. * * @param \Closure|array|null $callback - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function fake($callback = null) { @@ -12077,8 +12025,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the process factory has fake process handlers and is recording processes. * - * @return bool - * @static + * @return bool + * @static */ public static function isRecording() { @@ -12091,8 +12039,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Process\PendingProcess $process * @param \Illuminate\Contracts\Process\ProcessResult $result - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function recordIfRecording($process, $result) { @@ -12105,8 +12053,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Process\PendingProcess $process * @param \Illuminate\Contracts\Process\ProcessResult $result - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function record($process, $result) { @@ -12118,8 +12066,8 @@ namespace Illuminate\Support\Facades { * Indicate that an exception should be thrown if any process is not faked. * * @param bool $prevent - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function preventStrayProcesses($prevent = true) { @@ -12130,8 +12078,8 @@ namespace Illuminate\Support\Facades { /** * Determine if stray processes are being prevented. * - * @return bool - * @static + * @return bool + * @static */ public static function preventingStrayProcesses() { @@ -12143,8 +12091,8 @@ namespace Illuminate\Support\Facades { * Assert that a process was recorded matching a given truth test. * * @param \Closure|string $callback - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function assertRan($callback) { @@ -12157,8 +12105,8 @@ namespace Illuminate\Support\Facades { * * @param \Closure|string $callback * @param int $times - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function assertRanTimes($callback, $times = 1) { @@ -12170,8 +12118,8 @@ namespace Illuminate\Support\Facades { * Assert that a process was not recorded matching a given truth test. * * @param \Closure|string $callback - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function assertNotRan($callback) { @@ -12183,8 +12131,8 @@ namespace Illuminate\Support\Facades { * Assert that a process was not recorded matching a given truth test. * * @param \Closure|string $callback - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function assertDidntRun($callback) { @@ -12195,8 +12143,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no processes were recorded. * - * @return \Illuminate\Process\Factory - * @static + * @return \Illuminate\Process\Factory + * @static */ public static function assertNothingRan() { @@ -12208,8 +12156,8 @@ namespace Illuminate\Support\Facades { * Start defining a pool of processes. * * @param callable $callback - * @return \Illuminate\Process\Pool - * @static + * @return \Illuminate\Process\Pool + * @static */ public static function pool($callback) { @@ -12221,8 +12169,8 @@ namespace Illuminate\Support\Facades { * Start defining a series of piped processes. * * @param callable|array $callback - * @return \Illuminate\Contracts\Process\ProcessResult - * @static + * @return \Illuminate\Contracts\Process\ProcessResult + * @static */ public static function pipe($callback, $output = null) { @@ -12235,8 +12183,8 @@ namespace Illuminate\Support\Facades { * * @param callable $callback * @param callable|null $output - * @return \Illuminate\Process\ProcessPoolResults - * @static + * @return \Illuminate\Process\ProcessPoolResults + * @static */ public static function concurrently($callback, $output = null) { @@ -12247,8 +12195,8 @@ namespace Illuminate\Support\Facades { /** * Create a new pending process associated with this factory. * - * @return \Illuminate\Process\PendingProcess - * @static + * @return \Illuminate\Process\PendingProcess + * @static */ public static function newPendingProcess() { @@ -12262,8 +12210,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -12275,9 +12223,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -12288,8 +12236,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -12299,8 +12247,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -12312,9 +12260,9 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -12324,8 +12272,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Queue\QueueManager * @see \Illuminate\Queue\Queue * @see \Illuminate\Support\Testing\Fakes\QueueFake @@ -12335,8 +12281,8 @@ namespace Illuminate\Support\Facades { * Register an event listener for the before job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function before($callback) { @@ -12348,8 +12294,8 @@ namespace Illuminate\Support\Facades { * Register an event listener for the after job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function after($callback) { @@ -12361,8 +12307,8 @@ namespace Illuminate\Support\Facades { * Register an event listener for the exception occurred job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function exceptionOccurred($callback) { @@ -12374,8 +12320,8 @@ namespace Illuminate\Support\Facades { * Register an event listener for the daemon queue loop. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function looping($callback) { @@ -12387,8 +12333,8 @@ namespace Illuminate\Support\Facades { * Register an event listener for the failed job event. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function failing($callback) { @@ -12400,8 +12346,8 @@ namespace Illuminate\Support\Facades { * Register an event listener for the daemon queue stopping. * * @param mixed $callback - * @return void - * @static + * @return void + * @static */ public static function stopping($callback) { @@ -12413,8 +12359,8 @@ namespace Illuminate\Support\Facades { * Determine if the driver is connected. * * @param string|null $name - * @return bool - * @static + * @return bool + * @static */ public static function connected($name = null) { @@ -12426,8 +12372,8 @@ namespace Illuminate\Support\Facades { * Resolve a queue connection instance. * * @param string|null $name - * @return \Illuminate\Contracts\Queue\Queue - * @static + * @return \Illuminate\Contracts\Queue\Queue + * @static */ public static function connection($name = null) { @@ -12440,8 +12386,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function extend($driver, $resolver) { @@ -12454,8 +12400,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function addConnector($driver, $resolver) { @@ -12466,8 +12412,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the default queue connection. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -12479,8 +12425,8 @@ namespace Illuminate\Support\Facades { * Set the name of the default queue connection. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -12492,8 +12438,8 @@ namespace Illuminate\Support\Facades { * Get the full name for the given connection. * * @param string|null $connection - * @return string - * @static + * @return string + * @static */ public static function getName($connection = null) { @@ -12504,8 +12450,8 @@ namespace Illuminate\Support\Facades { /** * Get the application instance used by the manager. * - * @return \Illuminate\Contracts\Foundation\Application - * @static + * @return \Illuminate\Contracts\Foundation\Application + * @static */ public static function getApplication() { @@ -12517,8 +12463,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Queue\QueueManager - * @static + * @return \Illuminate\Queue\QueueManager + * @static */ public static function setApplication($app) { @@ -12530,8 +12476,8 @@ namespace Illuminate\Support\Facades { * Specify the jobs that should be queued instead of faked. * * @param array|string $jobsToBeQueued - * @return \Illuminate\Support\Testing\Fakes\QueueFake - * @static + * @return \Illuminate\Support\Testing\Fakes\QueueFake + * @static */ public static function except($jobsToBeQueued) { @@ -12544,8 +12490,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $job * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushed($job, $callback = null) { @@ -12559,8 +12505,8 @@ namespace Illuminate\Support\Facades { * @param string $queue * @param string|\Closure $job * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushedOn($queue, $job, $callback = null) { @@ -12574,8 +12520,8 @@ namespace Illuminate\Support\Facades { * @param string $job * @param array $expectedChain * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushedWithChain($job, $expectedChain = [], $callback = null) { @@ -12588,8 +12534,8 @@ namespace Illuminate\Support\Facades { * * @param string $job * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertPushedWithoutChain($job, $callback = null) { @@ -12601,8 +12547,8 @@ namespace Illuminate\Support\Facades { * Assert if a closure was pushed based on a truth-test callback. * * @param callable|int|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertClosurePushed($callback = null) { @@ -12614,8 +12560,8 @@ namespace Illuminate\Support\Facades { * Assert that a closure was not pushed based on a truth-test callback. * * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertClosureNotPushed($callback = null) { @@ -12628,8 +12574,8 @@ namespace Illuminate\Support\Facades { * * @param string|\Closure $job * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function assertNotPushed($job, $callback = null) { @@ -12641,8 +12587,8 @@ namespace Illuminate\Support\Facades { * Assert the total count of jobs that were pushed. * * @param int $expectedCount - * @return void - * @static + * @return void + * @static */ public static function assertCount($expectedCount) { @@ -12653,8 +12599,8 @@ namespace Illuminate\Support\Facades { /** * Assert that no jobs were pushed. * - * @return void - * @static + * @return void + * @static */ public static function assertNothingPushed() { @@ -12667,8 +12613,8 @@ namespace Illuminate\Support\Facades { * * @param string $job * @param callable|null $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function pushed($job, $callback = null) { @@ -12680,8 +12626,8 @@ namespace Illuminate\Support\Facades { * Get all of the raw pushes matching a truth-test callback. * * @param null|\Closure(string, ?string, array): bool $callback - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function pushedRaw($callback = null) { @@ -12693,8 +12639,8 @@ namespace Illuminate\Support\Facades { * Determine if there are any stored jobs for a given class. * * @param string $job - * @return bool - * @static + * @return bool + * @static */ public static function hasPushed($job) { @@ -12706,8 +12652,8 @@ namespace Illuminate\Support\Facades { * Get the size of the queue. * * @param string|null $queue - * @return int - * @static + * @return int + * @static */ public static function size($queue = null) { @@ -12721,8 +12667,8 @@ namespace Illuminate\Support\Facades { * @param string|object $job * @param mixed $data * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function push($job, $data = '', $queue = null) { @@ -12734,8 +12680,8 @@ namespace Illuminate\Support\Facades { * Determine if a job should be faked or actually dispatched. * * @param object $job - * @return bool - * @static + * @return bool + * @static */ public static function shouldFakeJob($job) { @@ -12749,8 +12695,8 @@ namespace Illuminate\Support\Facades { * @param string $payload * @param string|null $queue * @param array $options - * @return mixed - * @static + * @return mixed + * @static */ public static function pushRaw($payload, $queue = null, $options = []) { @@ -12765,8 +12711,8 @@ namespace Illuminate\Support\Facades { * @param string|object $job * @param mixed $data * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function later($delay, $job, $data = '', $queue = null) { @@ -12780,8 +12726,8 @@ namespace Illuminate\Support\Facades { * @param string $queue * @param string|object $job * @param mixed $data - * @return mixed - * @static + * @return mixed + * @static */ public static function pushOn($queue, $job, $data = '') { @@ -12796,8 +12742,8 @@ namespace Illuminate\Support\Facades { * @param \DateTimeInterface|\DateInterval|int $delay * @param string|object $job * @param mixed $data - * @return mixed - * @static + * @return mixed + * @static */ public static function laterOn($queue, $delay, $job, $data = '') { @@ -12809,8 +12755,8 @@ namespace Illuminate\Support\Facades { * Pop the next job off of the queue. * * @param string|null $queue - * @return \Illuminate\Contracts\Queue\Job|null - * @static + * @return \Illuminate\Contracts\Queue\Job|null + * @static */ public static function pop($queue = null) { @@ -12824,8 +12770,8 @@ namespace Illuminate\Support\Facades { * @param array $jobs * @param mixed $data * @param string|null $queue - * @return mixed - * @static + * @return mixed + * @static */ public static function bulk($jobs, $data = '', $queue = null) { @@ -12836,8 +12782,8 @@ namespace Illuminate\Support\Facades { /** * Get the jobs that have been pushed. * - * @return array - * @static + * @return array + * @static */ public static function pushedJobs() { @@ -12848,8 +12794,8 @@ namespace Illuminate\Support\Facades { /** * Get the payloads that were pushed raw. * - * @return list - * @static + * @return list + * @static */ public static function rawPushes() { @@ -12861,8 +12807,8 @@ namespace Illuminate\Support\Facades { * Specify if jobs should be serialized and restored when being "pushed" to the queue. * * @param bool $serializeAndRestore - * @return \Illuminate\Support\Testing\Fakes\QueueFake - * @static + * @return \Illuminate\Support\Testing\Fakes\QueueFake + * @static */ public static function serializeAndRestore($serializeAndRestore = true) { @@ -12873,8 +12819,8 @@ namespace Illuminate\Support\Facades { /** * Get the connection name for the queue. * - * @return string - * @static + * @return string + * @static */ public static function getConnectionName() { @@ -12886,8 +12832,8 @@ namespace Illuminate\Support\Facades { * Set the connection name for the queue. * * @param string $name - * @return \Illuminate\Support\Testing\Fakes\QueueFake - * @static + * @return \Illuminate\Support\Testing\Fakes\QueueFake + * @static */ public static function setConnectionName($name) { @@ -12899,8 +12845,8 @@ namespace Illuminate\Support\Facades { * Get the maximum number of attempts for an object-based queue handler. * * @param mixed $job - * @return mixed - * @static + * @return mixed + * @static */ public static function getJobTries($job) { @@ -12913,8 +12859,8 @@ namespace Illuminate\Support\Facades { * Get the backoff for an object-based queue handler. * * @param mixed $job - * @return mixed - * @static + * @return mixed + * @static */ public static function getJobBackoff($job) { @@ -12927,8 +12873,8 @@ namespace Illuminate\Support\Facades { * Get the expiration timestamp for an object-based queue handler. * * @param mixed $job - * @return mixed - * @static + * @return mixed + * @static */ public static function getJobExpiration($job) { @@ -12941,8 +12887,8 @@ namespace Illuminate\Support\Facades { * Register a callback to be executed when creating job payloads. * * @param callable|null $callback - * @return void - * @static + * @return void + * @static */ public static function createPayloadUsing($callback) { @@ -12953,8 +12899,8 @@ namespace Illuminate\Support\Facades { /** * Get the container instance being used by the connection. * - * @return \Illuminate\Container\Container - * @static + * @return \Illuminate\Container\Container + * @static */ public static function getContainer() { @@ -12967,8 +12913,8 @@ namespace Illuminate\Support\Facades { * Set the IoC container instance. * * @param \Illuminate\Container\Container $container - * @return void - * @static + * @return void + * @static */ public static function setContainer($container) { @@ -12979,8 +12925,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Cache\RateLimiter */ class RateLimiter { @@ -12989,8 +12933,8 @@ namespace Illuminate\Support\Facades { * * @param \BackedEnum|\UnitEnum|string $name * @param \Closure $callback - * @return \Illuminate\Cache\RateLimiter - * @static + * @return \Illuminate\Cache\RateLimiter + * @static */ public static function for($name, $callback) { @@ -13002,8 +12946,8 @@ namespace Illuminate\Support\Facades { * Get the given named rate limiter. * * @param \BackedEnum|\UnitEnum|string $name - * @return \Closure|null - * @static + * @return \Closure|null + * @static */ public static function limiter($name) { @@ -13018,8 +12962,8 @@ namespace Illuminate\Support\Facades { * @param int $maxAttempts * @param \Closure $callback * @param int $decaySeconds - * @return mixed - * @static + * @return mixed + * @static */ public static function attempt($key, $maxAttempts, $callback, $decaySeconds = 60) { @@ -13032,8 +12976,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $maxAttempts - * @return bool - * @static + * @return bool + * @static */ public static function tooManyAttempts($key, $maxAttempts) { @@ -13046,8 +12990,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $decaySeconds - * @return int - * @static + * @return int + * @static */ public static function hit($key, $decaySeconds = 60) { @@ -13061,8 +13005,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param int $decaySeconds * @param int $amount - * @return int - * @static + * @return int + * @static */ public static function increment($key, $decaySeconds = 60, $amount = 1) { @@ -13076,8 +13020,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param int $decaySeconds * @param int $amount - * @return int - * @static + * @return int + * @static */ public static function decrement($key, $decaySeconds = 60, $amount = 1) { @@ -13089,8 +13033,8 @@ namespace Illuminate\Support\Facades { * Get the number of attempts for the given key. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function attempts($key) { @@ -13102,8 +13046,8 @@ namespace Illuminate\Support\Facades { * Reset the number of attempts for the given key. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function resetAttempts($key) { @@ -13116,8 +13060,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $maxAttempts - * @return int - * @static + * @return int + * @static */ public static function remaining($key, $maxAttempts) { @@ -13130,8 +13074,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $maxAttempts - * @return int - * @static + * @return int + * @static */ public static function retriesLeft($key, $maxAttempts) { @@ -13143,8 +13087,8 @@ namespace Illuminate\Support\Facades { * Clear the hits and lockout timer for the given key. * * @param string $key - * @return void - * @static + * @return void + * @static */ public static function clear($key) { @@ -13156,8 +13100,8 @@ namespace Illuminate\Support\Facades { * Get the number of seconds until the "key" is accessible again. * * @param string $key - * @return int - * @static + * @return int + * @static */ public static function availableIn($key) { @@ -13169,8 +13113,8 @@ namespace Illuminate\Support\Facades { * Clean the rate limiter key from unicode characters. * * @param string $key - * @return string - * @static + * @return string + * @static */ public static function cleanRateLimiterKey($key) { @@ -13180,8 +13124,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Routing\Redirector */ class Redirect { @@ -13191,8 +13133,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param mixed $fallback - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function back($status = 302, $headers = [], $fallback = false) { @@ -13205,8 +13147,8 @@ namespace Illuminate\Support\Facades { * * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function refresh($status = 302, $headers = []) { @@ -13221,8 +13163,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function guest($path, $status = 302, $headers = [], $secure = null) { @@ -13237,8 +13179,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function intended($default = '/', $status = 302, $headers = [], $secure = null) { @@ -13253,8 +13195,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function to($path, $status = 302, $headers = [], $secure = null) { @@ -13268,8 +13210,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function away($path, $status = 302, $headers = []) { @@ -13283,8 +13225,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function secure($path, $status = 302, $headers = []) { @@ -13299,8 +13241,8 @@ namespace Illuminate\Support\Facades { * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function route($route, $parameters = [], $status = 302, $headers = []) { @@ -13316,8 +13258,8 @@ namespace Illuminate\Support\Facades { * @param \DateTimeInterface|\DateInterval|int|null $expiration * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function signedRoute($route, $parameters = [], $expiration = null, $status = 302, $headers = []) { @@ -13333,8 +13275,8 @@ namespace Illuminate\Support\Facades { * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function temporarySignedRoute($route, $expiration, $parameters = [], $status = 302, $headers = []) { @@ -13349,8 +13291,8 @@ namespace Illuminate\Support\Facades { * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function action($action, $parameters = [], $status = 302, $headers = []) { @@ -13361,8 +13303,8 @@ namespace Illuminate\Support\Facades { /** * Get the URL generator instance. * - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function getUrlGenerator() { @@ -13374,8 +13316,8 @@ namespace Illuminate\Support\Facades { * Set the active session store. * * @param \Illuminate\Session\Store $session - * @return void - * @static + * @return void + * @static */ public static function setSession($session) { @@ -13386,8 +13328,8 @@ namespace Illuminate\Support\Facades { /** * Get the "intended" URL from the session. * - * @return string|null - * @static + * @return string|null + * @static */ public static function getIntendedUrl() { @@ -13399,8 +13341,8 @@ namespace Illuminate\Support\Facades { * Set the "intended" URL in the session. * * @param string $url - * @return \Illuminate\Routing\Redirector - * @static + * @return \Illuminate\Routing\Redirector + * @static */ public static function setIntendedUrl($url) { @@ -13414,8 +13356,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -13427,9 +13369,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -13440,8 +13382,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -13451,8 +13393,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -13461,19 +13403,14 @@ namespace Illuminate\Support\Facades { } /** - * - * - * @method static array validate(array $rules, ...$params) - * @method static array validateWithBag(string $errorBag, array $rules, ...$params) - * @method static bool hasValidSignature(bool $absolute = true) * @see \Illuminate\Http\Request */ class Request { /** * Create a new Illuminate HTTP request from server variables. * - * @return static - * @static + * @return static + * @static */ public static function capture() { @@ -13483,8 +13420,8 @@ namespace Illuminate\Support\Facades { /** * Return the Request instance. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function instance() { @@ -13495,8 +13432,8 @@ namespace Illuminate\Support\Facades { /** * Get the request method. * - * @return string - * @static + * @return string + * @static */ public static function method() { @@ -13507,8 +13444,8 @@ namespace Illuminate\Support\Facades { /** * Get a URI instance for the request. * - * @return \Illuminate\Support\Uri - * @static + * @return \Illuminate\Support\Uri + * @static */ public static function uri() { @@ -13519,8 +13456,8 @@ namespace Illuminate\Support\Facades { /** * Get the root URL for the application. * - * @return string - * @static + * @return string + * @static */ public static function root() { @@ -13531,8 +13468,8 @@ namespace Illuminate\Support\Facades { /** * Get the URL (no query string) for the request. * - * @return string - * @static + * @return string + * @static */ public static function url() { @@ -13543,8 +13480,8 @@ namespace Illuminate\Support\Facades { /** * Get the full URL for the request. * - * @return string - * @static + * @return string + * @static */ public static function fullUrl() { @@ -13556,8 +13493,8 @@ namespace Illuminate\Support\Facades { * Get the full URL for the request with the added query string parameters. * * @param array $query - * @return string - * @static + * @return string + * @static */ public static function fullUrlWithQuery($query) { @@ -13569,8 +13506,8 @@ namespace Illuminate\Support\Facades { * Get the full URL for the request without the given query string parameters. * * @param array|string $keys - * @return string - * @static + * @return string + * @static */ public static function fullUrlWithoutQuery($keys) { @@ -13581,8 +13518,8 @@ namespace Illuminate\Support\Facades { /** * Get the current path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function path() { @@ -13593,8 +13530,8 @@ namespace Illuminate\Support\Facades { /** * Get the current decoded path info for the request. * - * @return string - * @static + * @return string + * @static */ public static function decodedPath() { @@ -13607,8 +13544,8 @@ namespace Illuminate\Support\Facades { * * @param int $index * @param string|null $default - * @return string|null - * @static + * @return string|null + * @static */ public static function segment($index, $default = null) { @@ -13619,8 +13556,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the segments for the request path. * - * @return array - * @static + * @return array + * @static */ public static function segments() { @@ -13632,8 +13569,8 @@ namespace Illuminate\Support\Facades { * Determine if the current request URI matches a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function is(...$patterns) { @@ -13645,8 +13582,8 @@ namespace Illuminate\Support\Facades { * Determine if the route name matches a given pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function routeIs(...$patterns) { @@ -13658,8 +13595,8 @@ namespace Illuminate\Support\Facades { * Determine if the current request URL and query string match a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function fullUrlIs(...$patterns) { @@ -13670,8 +13607,8 @@ namespace Illuminate\Support\Facades { /** * Get the host name. * - * @return string - * @static + * @return string + * @static */ public static function host() { @@ -13682,8 +13619,8 @@ namespace Illuminate\Support\Facades { /** * Get the HTTP host being requested. * - * @return string - * @static + * @return string + * @static */ public static function httpHost() { @@ -13694,8 +13631,8 @@ namespace Illuminate\Support\Facades { /** * Get the scheme and HTTP host. * - * @return string - * @static + * @return string + * @static */ public static function schemeAndHttpHost() { @@ -13706,8 +13643,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is the result of an AJAX call. * - * @return bool - * @static + * @return bool + * @static */ public static function ajax() { @@ -13718,8 +13655,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is the result of a PJAX call. * - * @return bool - * @static + * @return bool + * @static */ public static function pjax() { @@ -13730,8 +13667,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is the result of a prefetch call. * - * @return bool - * @static + * @return bool + * @static */ public static function prefetch() { @@ -13742,8 +13679,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is over HTTPS. * - * @return bool - * @static + * @return bool + * @static */ public static function secure() { @@ -13754,8 +13691,8 @@ namespace Illuminate\Support\Facades { /** * Get the client IP address. * - * @return string|null - * @static + * @return string|null + * @static */ public static function ip() { @@ -13766,8 +13703,8 @@ namespace Illuminate\Support\Facades { /** * Get the client IP addresses. * - * @return array - * @static + * @return array + * @static */ public static function ips() { @@ -13778,8 +13715,8 @@ namespace Illuminate\Support\Facades { /** * Get the client user agent. * - * @return string|null - * @static + * @return string|null + * @static */ public static function userAgent() { @@ -13791,8 +13728,8 @@ namespace Illuminate\Support\Facades { * Merge new input into the current request's input array. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function merge($input) { @@ -13804,8 +13741,8 @@ namespace Illuminate\Support\Facades { * Merge new input into the request's input, but only when that key is missing from the request. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function mergeIfMissing($input) { @@ -13817,8 +13754,8 @@ namespace Illuminate\Support\Facades { * Replace the input values for the current request. * * @param array $input - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function replace($input) { @@ -13833,8 +13770,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -13847,8 +13784,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param mixed $default - * @return \Symfony\Component\HttpFoundation\InputBag|mixed - * @static + * @return \Symfony\Component\HttpFoundation\InputBag|mixed + * @static */ public static function json($key = null, $default = null) { @@ -13861,8 +13798,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Http\Request $from * @param \Illuminate\Http\Request|null $to - * @return static - * @static + * @return static + * @static */ public static function createFrom($from, $to = null) { @@ -13873,8 +13810,8 @@ namespace Illuminate\Support\Facades { * Create an Illuminate request from a Symfony instance. * * @param \Symfony\Component\HttpFoundation\Request $request - * @return static - * @static + * @return static + * @static */ public static function createFromBase($request) { @@ -13884,14 +13821,14 @@ namespace Illuminate\Support\Facades { /** * Clones a request and overrides some of its parameters. * - * @return static + * @return static * @param array|null $query The GET parameters * @param array|null $request The POST parameters * @param array|null $attributes The request attributes (parameters parsed from the PATH_INFO, ...) * @param array|null $cookies The COOKIE parameters * @param array|null $files The FILES parameters * @param array|null $server The SERVER parameters - * @static + * @static */ public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null) { @@ -13907,7 +13844,7 @@ namespace Illuminate\Support\Facades { * is associated with a Session instance. * * @param bool $skipIfUninitialized When true, ignores factories injected by `setSessionFactory` - * @static + * @static */ public static function hasSession($skipIfUninitialized = false) { @@ -13919,7 +13856,7 @@ namespace Illuminate\Support\Facades { * Gets the Session. * * @throws SessionNotFoundException When session is not set properly - * @static + * @static */ public static function getSession() { @@ -13930,9 +13867,9 @@ namespace Illuminate\Support\Facades { /** * Get the session associated with the request. * - * @return \Illuminate\Contracts\Session\Session + * @return \Illuminate\Contracts\Session\Session * @throws \RuntimeException - * @static + * @static */ public static function session() { @@ -13944,8 +13881,8 @@ namespace Illuminate\Support\Facades { * Set the session instance on the request. * * @param \Illuminate\Contracts\Session\Session $session - * @return void - * @static + * @return void + * @static */ public static function setLaravelSession($session) { @@ -13957,8 +13894,8 @@ namespace Illuminate\Support\Facades { * Set the locale for the request instance. * * @param string $locale - * @return void - * @static + * @return void + * @static */ public static function setRequestLocale($locale) { @@ -13970,8 +13907,8 @@ namespace Illuminate\Support\Facades { * Set the default locale for the request instance. * * @param string $locale - * @return void - * @static + * @return void + * @static */ public static function setDefaultRequestLocale($locale) { @@ -13983,8 +13920,8 @@ namespace Illuminate\Support\Facades { * Get the user making the request. * * @param string|null $guard - * @return mixed - * @static + * @return mixed + * @static */ public static function user($guard = null) { @@ -13997,8 +13934,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $param * @param mixed $default - * @return \Illuminate\Routing\Route|object|string|null - * @static + * @return \Illuminate\Routing\Route|object|string|null + * @static */ public static function route($param = null, $default = null) { @@ -14009,9 +13946,9 @@ namespace Illuminate\Support\Facades { /** * Get a unique fingerprint for the request / route / IP address. * - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function fingerprint() { @@ -14023,8 +13960,8 @@ namespace Illuminate\Support\Facades { * Set the JSON payload for the request. * * @param \Symfony\Component\HttpFoundation\InputBag $json - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setJson($json) { @@ -14035,8 +13972,8 @@ namespace Illuminate\Support\Facades { /** * Get the user resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getUserResolver() { @@ -14048,8 +13985,8 @@ namespace Illuminate\Support\Facades { * Set the user resolver callback. * * @param \Closure $callback - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setUserResolver($callback) { @@ -14060,8 +13997,8 @@ namespace Illuminate\Support\Facades { /** * Get the route resolver callback. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getRouteResolver() { @@ -14073,8 +14010,8 @@ namespace Illuminate\Support\Facades { * Set the route resolver callback. * * @param \Closure $callback - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function setRouteResolver($callback) { @@ -14085,8 +14022,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the input and files for the request. * - * @return array - * @static + * @return array + * @static */ public static function toArray() { @@ -14098,8 +14035,8 @@ namespace Illuminate\Support\Facades { * Determine if the given offset exists. * * @param string $offset - * @return bool - * @static + * @return bool + * @static */ public static function offsetExists($offset) { @@ -14111,8 +14048,8 @@ namespace Illuminate\Support\Facades { * Get the value at the given offset. * * @param string $offset - * @return mixed - * @static + * @return mixed + * @static */ public static function offsetGet($offset) { @@ -14125,8 +14062,8 @@ namespace Illuminate\Support\Facades { * * @param string $offset * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function offsetSet($offset, $value) { @@ -14138,8 +14075,8 @@ namespace Illuminate\Support\Facades { * Remove the value at the given offset. * * @param string $offset - * @return void - * @static + * @return void + * @static */ public static function offsetUnset($offset) { @@ -14159,7 +14096,7 @@ namespace Illuminate\Support\Facades { * @param array $files The FILES parameters * @param array $server The SERVER parameters * @param string|resource|null $content The raw body data - * @static + * @static */ public static function initialize($query = [], $request = [], $attributes = [], $cookies = [], $files = [], $server = [], $content = null) { @@ -14171,7 +14108,7 @@ namespace Illuminate\Support\Facades { /** * Creates a new request with values from PHP's super globals. * - * @static + * @static */ public static function createFromGlobals() { @@ -14193,7 +14130,7 @@ namespace Illuminate\Support\Facades { * @param array $server The server parameters ($_SERVER) * @param string|resource|null $content The raw body data * @throws BadRequestException When the URI is invalid - * @static + * @static */ public static function create($uri, $method = 'GET', $parameters = [], $cookies = [], $files = [], $server = [], $content = null) { @@ -14208,7 +14145,7 @@ namespace Illuminate\Support\Facades { * to keep BC with an existing system. It should not be used for any * other purpose. * - * @static + * @static */ public static function setFactory($callable) { @@ -14222,7 +14159,7 @@ namespace Illuminate\Support\Facades { * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. * $_FILES is never overridden, see rfc1867 * - * @static + * @static */ public static function overrideGlobals() { @@ -14238,7 +14175,7 @@ namespace Illuminate\Support\Facades { * * @param array $proxies A list of trusted proxies, the string 'REMOTE_ADDR' will be replaced with $_SERVER['REMOTE_ADDR'] and 'PRIVATE_SUBNETS' by IpUtils::PRIVATE_SUBNETS * @param int-mask-of $trustedHeaderSet A bit field to set which headers to trust from your proxies - * @static + * @static */ public static function setTrustedProxies($proxies, $trustedHeaderSet) { @@ -14249,8 +14186,8 @@ namespace Illuminate\Support\Facades { /** * Gets the list of trusted proxies. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getTrustedProxies() { @@ -14262,7 +14199,7 @@ namespace Illuminate\Support\Facades { * Gets the set of trusted headers from trusted proxies. * * @return int A bit field of Request::HEADER_* that defines which headers are trusted from your proxies - * @static + * @static */ public static function getTrustedHeaderSet() { @@ -14276,7 +14213,7 @@ namespace Illuminate\Support\Facades { * You should only list the hosts you manage using regexs. * * @param array $hostPatterns A list of trusted host patterns - * @static + * @static */ public static function setTrustedHosts($hostPatterns) { @@ -14287,8 +14224,8 @@ namespace Illuminate\Support\Facades { /** * Gets the list of trusted host patterns. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getTrustedHosts() { @@ -14302,7 +14239,7 @@ namespace Illuminate\Support\Facades { * It builds a normalized query string, where keys/value pairs are alphabetized, * have consistent escaping and unneeded delimiters are removed. * - * @static + * @static */ public static function normalizeQueryString($qs) { @@ -14321,7 +14258,7 @@ namespace Illuminate\Support\Facades { * * The HTTP method can only be overridden when the real HTTP method is POST. * - * @static + * @static */ public static function enableHttpMethodParameterOverride() { @@ -14332,7 +14269,7 @@ namespace Illuminate\Support\Facades { /** * Checks whether support for the _method request parameter is enabled. * - * @static + * @static */ public static function getHttpMethodParameterOverride() { @@ -14344,7 +14281,7 @@ namespace Illuminate\Support\Facades { * Whether the request contains a Session which was started in one of the * previous requests. * - * @static + * @static */ public static function hasPreviousSession() { @@ -14354,9 +14291,7 @@ namespace Illuminate\Support\Facades { } /** - * - * - * @static + * @static */ public static function setSession($session) { @@ -14366,11 +14301,9 @@ namespace Illuminate\Support\Facades { } /** - * - * - * @internal + * @internal * @param callable(): SessionInterface $factory - * @static + * @static */ public static function setSessionFactory($factory) { @@ -14389,7 +14322,7 @@ namespace Illuminate\Support\Facades { * Use this method carefully; you should use getClientIp() instead. * * @see getClientIp() - * @static + * @static */ public static function getClientIps() { @@ -14413,7 +14346,7 @@ namespace Illuminate\Support\Facades { * * @see getClientIps() * @see https://wikipedia.org/wiki/X-Forwarded-For - * @static + * @static */ public static function getClientIp() { @@ -14425,7 +14358,7 @@ namespace Illuminate\Support\Facades { /** * Returns current script name. * - * @static + * @static */ public static function getScriptName() { @@ -14447,7 +14380,7 @@ namespace Illuminate\Support\Facades { * * http://localhost/mysite/about?var=1 returns '/about' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getPathInfo() { @@ -14467,7 +14400,7 @@ namespace Illuminate\Support\Facades { * * http://localhost/we%20b/index.php returns '/we%20b' * * @return string The raw path (i.e. not urldecoded) - * @static + * @static */ public static function getBasePath() { @@ -14485,7 +14418,7 @@ namespace Illuminate\Support\Facades { * script filename (e.g. index.php) if one exists. * * @return string The raw URL (i.e. not urldecoded) - * @static + * @static */ public static function getBaseUrl() { @@ -14497,7 +14430,7 @@ namespace Illuminate\Support\Facades { /** * Gets the request's scheme. * - * @static + * @static */ public static function getScheme() { @@ -14515,7 +14448,7 @@ namespace Illuminate\Support\Facades { * The "X-Forwarded-Port" header must contain the client port. * * @return int|string|null Can be a string if fetched from the server bag - * @static + * @static */ public static function getPort() { @@ -14527,7 +14460,7 @@ namespace Illuminate\Support\Facades { /** * Returns the user. * - * @static + * @static */ public static function getUser() { @@ -14539,7 +14472,7 @@ namespace Illuminate\Support\Facades { /** * Returns the password. * - * @static + * @static */ public static function getPassword() { @@ -14552,7 +14485,7 @@ namespace Illuminate\Support\Facades { * Gets the user info. * * @return string|null A user name if any and, optionally, scheme-specific information about how to gain authorization to access the server - * @static + * @static */ public static function getUserInfo() { @@ -14566,7 +14499,7 @@ namespace Illuminate\Support\Facades { * * The port name will be appended to the host if it's non-standard. * - * @static + * @static */ public static function getHttpHost() { @@ -14579,7 +14512,7 @@ namespace Illuminate\Support\Facades { * Returns the requested URI (path and query string). * * @return string The raw URI (i.e. not URI decoded) - * @static + * @static */ public static function getRequestUri() { @@ -14594,7 +14527,7 @@ namespace Illuminate\Support\Facades { * If the URL was called with basic authentication, the user * and the password are not added to the generated string. * - * @static + * @static */ public static function getSchemeAndHttpHost() { @@ -14607,7 +14540,7 @@ namespace Illuminate\Support\Facades { * Generates a normalized URI (URL) for the Request. * * @see getQueryString() - * @static + * @static */ public static function getUri() { @@ -14620,7 +14553,7 @@ namespace Illuminate\Support\Facades { * Generates a normalized URI for the given path. * * @param string $path A path to use instead of the current one - * @static + * @static */ public static function getUriForPath($path) { @@ -14644,7 +14577,7 @@ namespace Illuminate\Support\Facades { * - "/a/b/c/other" -> "other" * - "/a/x/y" -> "../../x/y" * - * @static + * @static */ public static function getRelativeUriForPath($path) { @@ -14659,7 +14592,7 @@ namespace Illuminate\Support\Facades { * It builds a normalized query string, where keys/value pairs are alphabetized * and have consistent escaping. * - * @static + * @static */ public static function getQueryString() { @@ -14676,7 +14609,7 @@ namespace Illuminate\Support\Facades { * * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". * - * @static + * @static */ public static function isSecure() { @@ -14694,7 +14627,7 @@ namespace Illuminate\Support\Facades { * The "X-Forwarded-Host" header must contain the client host name. * * @throws SuspiciousOperationException when the host name is invalid or not trusted - * @static + * @static */ public static function getHost() { @@ -14706,7 +14639,7 @@ namespace Illuminate\Support\Facades { /** * Sets the request method. * - * @static + * @static */ public static function setMethod($method) { @@ -14727,7 +14660,7 @@ namespace Illuminate\Support\Facades { * The method is always an uppercased string. * * @see getRealMethod() - * @static + * @static */ public static function getMethod() { @@ -14740,7 +14673,7 @@ namespace Illuminate\Support\Facades { * Gets the "real" request method. * * @see getMethod() - * @static + * @static */ public static function getRealMethod() { @@ -14752,7 +14685,7 @@ namespace Illuminate\Support\Facades { /** * Gets the mime type associated with the format. * - * @static + * @static */ public static function getMimeType($format) { @@ -14764,8 +14697,8 @@ namespace Illuminate\Support\Facades { /** * Gets the mime types associated with the format. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getMimeTypes($format) { @@ -14776,7 +14709,7 @@ namespace Illuminate\Support\Facades { /** * Gets the format associated with the mime type. * - * @static + * @static */ public static function getFormat($mimeType) { @@ -14789,7 +14722,7 @@ namespace Illuminate\Support\Facades { * Associates a format with mime types. * * @param string|string[] $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) - * @static + * @static */ public static function setFormat($format, $mimeTypes) { @@ -14808,7 +14741,7 @@ namespace Illuminate\Support\Facades { * * $default * * @see getPreferredFormat - * @static + * @static */ public static function getRequestFormat($default = 'html') { @@ -14820,7 +14753,7 @@ namespace Illuminate\Support\Facades { /** * Sets the request format. * - * @static + * @static */ public static function setRequestFormat($format) { @@ -14833,7 +14766,7 @@ namespace Illuminate\Support\Facades { * Gets the usual name of the format associated with the request's media type (provided in the Content-Type header). * * @see Request::$formats - * @static + * @static */ public static function getContentTypeFormat() { @@ -14845,7 +14778,7 @@ namespace Illuminate\Support\Facades { /** * Sets the default locale. * - * @static + * @static */ public static function setDefaultLocale($locale) { @@ -14857,7 +14790,7 @@ namespace Illuminate\Support\Facades { /** * Get the default locale. * - * @static + * @static */ public static function getDefaultLocale() { @@ -14869,7 +14802,7 @@ namespace Illuminate\Support\Facades { /** * Sets the locale. * - * @static + * @static */ public static function setLocale($locale) { @@ -14881,7 +14814,7 @@ namespace Illuminate\Support\Facades { /** * Get the locale. * - * @static + * @static */ public static function getLocale() { @@ -14894,7 +14827,7 @@ namespace Illuminate\Support\Facades { * Checks if the request method is of specified type. * * @param string $method Uppercase request method (GET, POST etc) - * @static + * @static */ public static function isMethod($method) { @@ -14907,7 +14840,7 @@ namespace Illuminate\Support\Facades { * Checks whether or not the method is safe. * * @see https://tools.ietf.org/html/rfc7231#section-4.2.1 - * @static + * @static */ public static function isMethodSafe() { @@ -14919,7 +14852,7 @@ namespace Illuminate\Support\Facades { /** * Checks whether or not the method is idempotent. * - * @static + * @static */ public static function isMethodIdempotent() { @@ -14932,7 +14865,7 @@ namespace Illuminate\Support\Facades { * Checks whether the method is cacheable or not. * * @see https://tools.ietf.org/html/rfc7231#section-4.2.3 - * @static + * @static */ public static function isMethodCacheable() { @@ -14950,7 +14883,7 @@ namespace Illuminate\Support\Facades { * if the proxy is trusted (see "setTrustedProxies()"), otherwise it returns * the latter (from the "SERVER_PROTOCOL" server parameter). * - * @static + * @static */ public static function getProtocolVersion() { @@ -14963,9 +14896,9 @@ namespace Illuminate\Support\Facades { * Returns the request body content. * * @param bool $asResource If true, a resource will be returned - * @return string|resource + * @return string|resource * @psalm-return ($asResource is true ? resource : string) - * @static + * @static */ public static function getContent($asResource = false) { @@ -14978,7 +14911,7 @@ namespace Illuminate\Support\Facades { * Gets the decoded form or json request body. * * @throws JsonException When the body cannot be decoded to an array - * @static + * @static */ public static function getPayload() { @@ -14990,7 +14923,7 @@ namespace Illuminate\Support\Facades { /** * Gets the Etags. * - * @static + * @static */ public static function getETags() { @@ -15000,9 +14933,7 @@ namespace Illuminate\Support\Facades { } /** - * - * - * @static + * @static */ public static function isNoCache() { @@ -15019,7 +14950,7 @@ namespace Illuminate\Support\Facades { * Note that if you use this method, you should send the "Vary: Accept" header * in the response to prevent any issues with intermediary HTTP caches. * - * @static + * @static */ public static function getPreferredFormat($default = 'html') { @@ -15032,7 +14963,7 @@ namespace Illuminate\Support\Facades { * Returns the preferred language. * * @param string[] $locales An array of ordered available locales - * @static + * @static */ public static function getPreferredLanguage($locales = null) { @@ -15044,8 +14975,8 @@ namespace Illuminate\Support\Facades { /** * Gets a list of languages acceptable by the client browser ordered in the user browser preferences. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getLanguages() { @@ -15057,8 +14988,8 @@ namespace Illuminate\Support\Facades { /** * Gets a list of charsets acceptable by the client browser in preferable order. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getCharsets() { @@ -15070,8 +15001,8 @@ namespace Illuminate\Support\Facades { /** * Gets a list of encodings acceptable by the client browser in preferable order. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getEncodings() { @@ -15083,8 +15014,8 @@ namespace Illuminate\Support\Facades { /** * Gets a list of content types acceptable by the client browser in preferable order. * - * @return string[] - * @static + * @return string[] + * @static */ public static function getAcceptableContentTypes() { @@ -15100,7 +15031,7 @@ namespace Illuminate\Support\Facades { * It is known to work with common JavaScript frameworks: * * @see https://wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript - * @static + * @static */ public static function isXmlHttpRequest() { @@ -15113,7 +15044,7 @@ namespace Illuminate\Support\Facades { * Checks whether the client browser prefers safe content or not according to RFC8674. * * @see https://tools.ietf.org/html/rfc8674 - * @static + * @static */ public static function preferSafeContent() { @@ -15128,7 +15059,7 @@ namespace Illuminate\Support\Facades { * This can be useful to determine whether or not to trust the * contents of a proxy-specific header. * - * @static + * @static */ public static function isFromTrustedProxy() { @@ -15141,8 +15072,8 @@ namespace Illuminate\Support\Facades { * Filter the given array of rules into an array of rules that are included in precognitive headers. * * @param array $rules - * @return array - * @static + * @return array + * @static */ public static function filterPrecognitiveRules($rules) { @@ -15153,8 +15084,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is attempting to be precognitive. * - * @return bool - * @static + * @return bool + * @static */ public static function isAttemptingPrecognition() { @@ -15165,8 +15096,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is precognitive. * - * @return bool - * @static + * @return bool + * @static */ public static function isPrecognitive() { @@ -15177,8 +15108,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the request is sending JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function isJson() { @@ -15189,8 +15120,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current request probably expects a JSON response. * - * @return bool - * @static + * @return bool + * @static */ public static function expectsJson() { @@ -15201,8 +15132,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current request is asking for JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function wantsJson() { @@ -15214,8 +15145,8 @@ namespace Illuminate\Support\Facades { * Determines whether the current requests accepts a given content type. * * @param string|array $contentTypes - * @return bool - * @static + * @return bool + * @static */ public static function accepts($contentTypes) { @@ -15227,8 +15158,8 @@ namespace Illuminate\Support\Facades { * Return the most suitable content type from the given array based on content negotiation. * * @param string|array $contentTypes - * @return string|null - * @static + * @return string|null + * @static */ public static function prefers($contentTypes) { @@ -15239,8 +15170,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the current request accepts any content type. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsAnyContentType() { @@ -15251,8 +15182,8 @@ namespace Illuminate\Support\Facades { /** * Determines whether a request accepts JSON. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsJson() { @@ -15263,8 +15194,8 @@ namespace Illuminate\Support\Facades { /** * Determines whether a request accepts HTML. * - * @return bool - * @static + * @return bool + * @static */ public static function acceptsHtml() { @@ -15277,8 +15208,8 @@ namespace Illuminate\Support\Facades { * * @param string $actual * @param string $type - * @return bool - * @static + * @return bool + * @static */ public static function matchesType($actual, $type) { @@ -15289,8 +15220,8 @@ namespace Illuminate\Support\Facades { * Get the data format expected in the response. * * @param string $default - * @return string - * @static + * @return string + * @static */ public static function format($default = 'html') { @@ -15303,8 +15234,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param \Illuminate\Database\Eloquent\Model|string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function old($key = null, $default = null) { @@ -15315,8 +15246,8 @@ namespace Illuminate\Support\Facades { /** * Flash the input for the current request to the session. * - * @return void - * @static + * @return void + * @static */ public static function flash() { @@ -15328,8 +15259,8 @@ namespace Illuminate\Support\Facades { * Flash only some of the input to the session. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function flashOnly($keys) { @@ -15341,8 +15272,8 @@ namespace Illuminate\Support\Facades { * Flash only some of the input to the session. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function flashExcept($keys) { @@ -15353,8 +15284,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the old input from the session. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -15367,8 +15298,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function server($key = null, $default = null) { @@ -15380,8 +15311,8 @@ namespace Illuminate\Support\Facades { * Determine if a header is set on the request. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasHeader($key) { @@ -15394,8 +15325,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function header($key = null, $default = null) { @@ -15406,8 +15337,8 @@ namespace Illuminate\Support\Facades { /** * Get the bearer token from the request headers. * - * @return string|null - * @static + * @return string|null + * @static */ public static function bearerToken() { @@ -15418,8 +15349,8 @@ namespace Illuminate\Support\Facades { /** * Get the keys for all of the input and files. * - * @return array - * @static + * @return array + * @static */ public static function keys() { @@ -15431,8 +15362,8 @@ namespace Illuminate\Support\Facades { * Get all of the input and files for the request. * * @param array|mixed|null $keys - * @return array - * @static + * @return array + * @static */ public static function all($keys = null) { @@ -15445,8 +15376,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function input($key = null, $default = null) { @@ -15458,8 +15389,8 @@ namespace Illuminate\Support\Facades { * Retrieve input from the request as a Fluent object instance. * * @param array|string|null $key - * @return \Illuminate\Support\Fluent - * @static + * @return \Illuminate\Support\Fluent + * @static */ public static function fluent($key = null) { @@ -15472,8 +15403,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function query($key = null, $default = null) { @@ -15486,8 +15417,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function post($key = null, $default = null) { @@ -15499,8 +15430,8 @@ namespace Illuminate\Support\Facades { * Determine if a cookie is set on the request. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasCookie($key) { @@ -15513,8 +15444,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param string|array|null $default - * @return string|array|null - * @static + * @return string|array|null + * @static */ public static function cookie($key = null, $default = null) { @@ -15525,8 +15456,8 @@ namespace Illuminate\Support\Facades { /** * Get an array of all of the files on the request. * - * @return array - * @static + * @return array + * @static */ public static function allFiles() { @@ -15538,8 +15469,8 @@ namespace Illuminate\Support\Facades { * Determine if the uploaded data contains a file. * * @param string $key - * @return bool - * @static + * @return bool + * @static */ public static function hasFile($key) { @@ -15552,8 +15483,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param mixed $default - * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null - * @static + * @return \Illuminate\Http\UploadedFile|\Illuminate\Http\UploadedFile[]|array|null + * @static */ public static function file($key = null, $default = null) { @@ -15565,8 +15496,8 @@ namespace Illuminate\Support\Facades { * Dump the items. * * @param mixed $keys - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function dump($keys = []) { @@ -15578,8 +15509,8 @@ namespace Illuminate\Support\Facades { * Dump the given arguments and terminate execution. * * @param mixed $args - * @return never - * @static + * @return never + * @static */ public static function dd(...$args) { @@ -15591,8 +15522,8 @@ namespace Illuminate\Support\Facades { * Determine if the data contains a given key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function exists($key) { @@ -15604,8 +15535,8 @@ namespace Illuminate\Support\Facades { * Determine if the data contains a given key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -15617,8 +15548,8 @@ namespace Illuminate\Support\Facades { * Determine if the instance contains any of the given keys. * * @param string|array $keys - * @return bool - * @static + * @return bool + * @static */ public static function hasAny($keys) { @@ -15632,8 +15563,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function whenHas($key, $callback, $default = null) { @@ -15645,8 +15576,8 @@ namespace Illuminate\Support\Facades { * Determine if the instance contains a non-empty value for the given key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function filled($key) { @@ -15658,8 +15589,8 @@ namespace Illuminate\Support\Facades { * Determine if the instance contains an empty value for the given key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function isNotFilled($key) { @@ -15671,8 +15602,8 @@ namespace Illuminate\Support\Facades { * Determine if the instance contains a non-empty value for any of the given keys. * * @param string|array $keys - * @return bool - * @static + * @return bool + * @static */ public static function anyFilled($keys) { @@ -15686,8 +15617,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function whenFilled($key, $callback, $default = null) { @@ -15699,8 +15630,8 @@ namespace Illuminate\Support\Facades { * Determine if the instance is missing a given key. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -15714,8 +15645,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param callable $callback * @param callable|null $default - * @return $this|mixed - * @static + * @return $this|mixed + * @static */ public static function whenMissing($key, $callback, $default = null) { @@ -15728,8 +15659,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return \Illuminate\Support\Stringable - * @static + * @return \Illuminate\Support\Stringable + * @static */ public static function str($key, $default = null) { @@ -15742,8 +15673,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return \Illuminate\Support\Stringable - * @static + * @return \Illuminate\Support\Stringable + * @static */ public static function string($key, $default = null) { @@ -15758,8 +15689,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param bool $default - * @return bool - * @static + * @return bool + * @static */ public static function boolean($key = null, $default = false) { @@ -15772,8 +15703,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $default - * @return int - * @static + * @return int + * @static */ public static function integer($key, $default = 0) { @@ -15786,8 +15717,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param float $default - * @return float - * @static + * @return float + * @static */ public static function float($key, $default = 0.0) { @@ -15801,9 +15732,9 @@ namespace Illuminate\Support\Facades { * @param string $key * @param string|null $format * @param string|null $tz - * @return \Illuminate\Support\Carbon|null + * @return \Illuminate\Support\Carbon|null * @throws \Carbon\Exceptions\InvalidFormatException - * @static + * @static */ public static function date($key, $format = null, $tz = null) { @@ -15817,8 +15748,8 @@ namespace Illuminate\Support\Facades { * @template TEnum of \BackedEnum * @param string $key * @param class-string $enumClass - * @return TEnum|null - * @static + * @return TEnum|null + * @static */ public static function enum($key, $enumClass) { @@ -15832,8 +15763,8 @@ namespace Illuminate\Support\Facades { * @template TEnum of \BackedEnum * @param string $key * @param class-string $enumClass - * @return TEnum[] - * @static + * @return TEnum[] + * @static */ public static function enums($key, $enumClass) { @@ -15845,8 +15776,8 @@ namespace Illuminate\Support\Facades { * Retrieve data from the instance as an array. * * @param array|string|null $key - * @return array - * @static + * @return array + * @static */ public static function array($key = null) { @@ -15858,8 +15789,8 @@ namespace Illuminate\Support\Facades { * Retrieve data from the instance as a collection. * * @param array|string|null $key - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function collect($key = null) { @@ -15871,8 +15802,8 @@ namespace Illuminate\Support\Facades { * Get a subset containing the provided keys with values from the instance data. * * @param array|mixed $keys - * @return array - * @static + * @return array + * @static */ public static function only($keys) { @@ -15884,8 +15815,8 @@ namespace Illuminate\Support\Facades { * Get all of the data except for a specified array of items. * * @param array|mixed $keys - * @return array - * @static + * @return array + * @static */ public static function except($keys) { @@ -15901,8 +15832,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value * @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback * @param (callable($this, TWhenParameter): TWhenReturnType)|null $default - * @return $this|TWhenReturnType - * @static + * @return $this|TWhenReturnType + * @static */ public static function when($value = null, $callback = null, $default = null) { @@ -15918,8 +15849,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default - * @return $this|TUnlessReturnType - * @static + * @return $this|TUnlessReturnType + * @static */ public static function unless($value = null, $callback = null, $default = null) { @@ -15933,8 +15864,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -15946,9 +15877,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -15959,8 +15890,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -15970,18 +15901,79 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { \Illuminate\Http\Request::flushMacros(); } + /** + * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() + * @param array $rules + * @param mixed $params + * @static + */ + public static function validate($rules, ...$params) + { + return \Illuminate\Http\Request::validate($rules, ...$params); + } + + /** + * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() + * @param string $errorBag + * @param array $rules + * @param mixed $params + * @static + */ + public static function validateWithBag($errorBag, $rules, ...$params) + { + return \Illuminate\Http\Request::validateWithBag($errorBag, $rules, ...$params); + } + + /** + * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() + * @param mixed $absolute + * @static + */ + public static function hasValidSignature($absolute = true) + { + return \Illuminate\Http\Request::hasValidSignature($absolute); + } + + /** + * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() + * @static + */ + public static function hasValidRelativeSignature() + { + return \Illuminate\Http\Request::hasValidRelativeSignature(); + } + + /** + * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() + * @param mixed $ignoreQuery + * @param mixed $absolute + * @static + */ + public static function hasValidSignatureWhileIgnoring($ignoreQuery = [], $absolute = true) + { + return \Illuminate\Http\Request::hasValidSignatureWhileIgnoring($ignoreQuery, $absolute); + } + + /** + * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() + * @param mixed $ignoreQuery + * @static + */ + public static function hasValidRelativeSignatureWhileIgnoring($ignoreQuery = []) + { + return \Illuminate\Http\Request::hasValidRelativeSignatureWhileIgnoring($ignoreQuery); + } + } /** - * - * * @see \Illuminate\Routing\ResponseFactory */ class Response { @@ -15991,8 +15983,8 @@ namespace Illuminate\Support\Facades { * @param mixed $content * @param int $status * @param array $headers - * @return \Illuminate\Http\Response - * @static + * @return \Illuminate\Http\Response + * @static */ public static function make($content = '', $status = 200, $headers = []) { @@ -16005,8 +15997,8 @@ namespace Illuminate\Support\Facades { * * @param int $status * @param array $headers - * @return \Illuminate\Http\Response - * @static + * @return \Illuminate\Http\Response + * @static */ public static function noContent($status = 204, $headers = []) { @@ -16021,8 +16013,8 @@ namespace Illuminate\Support\Facades { * @param array $data * @param int $status * @param array $headers - * @return \Illuminate\Http\Response - * @static + * @return \Illuminate\Http\Response + * @static */ public static function view($view, $data = [], $status = 200, $headers = []) { @@ -16037,8 +16029,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param int $options - * @return \Illuminate\Http\JsonResponse - * @static + * @return \Illuminate\Http\JsonResponse + * @static */ public static function json($data = [], $status = 200, $headers = [], $options = 0) { @@ -16054,8 +16046,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param int $options - * @return \Illuminate\Http\JsonResponse - * @static + * @return \Illuminate\Http\JsonResponse + * @static */ public static function jsonp($callback, $data = [], $status = 200, $headers = [], $options = 0) { @@ -16069,8 +16061,8 @@ namespace Illuminate\Support\Facades { * @param \Closure $callback * @param array $headers * @param string $endStreamWith - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function eventStream($callback, $headers = [], $endStreamWith = '') { @@ -16084,8 +16076,8 @@ namespace Illuminate\Support\Facades { * @param callable $callback * @param int $status * @param array $headers - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function stream($callback, $status = 200, $headers = []) { @@ -16100,8 +16092,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param int $encodingOptions - * @return \Symfony\Component\HttpFoundation\StreamedJsonResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedJsonResponse + * @static */ public static function streamJson($data, $status = 200, $headers = [], $encodingOptions = 15) { @@ -16116,9 +16108,9 @@ namespace Illuminate\Support\Facades { * @param string|null $name * @param array $headers * @param string|null $disposition - * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @return \Symfony\Component\HttpFoundation\StreamedResponse * @throws \Illuminate\Routing\Exceptions\StreamedResponseException - * @static + * @static */ public static function streamDownload($callback, $name = null, $headers = [], $disposition = 'attachment') { @@ -16133,8 +16125,8 @@ namespace Illuminate\Support\Facades { * @param string|null $name * @param array $headers * @param string|null $disposition - * @return \Symfony\Component\HttpFoundation\BinaryFileResponse - * @static + * @return \Symfony\Component\HttpFoundation\BinaryFileResponse + * @static */ public static function download($file, $name = null, $headers = [], $disposition = 'attachment') { @@ -16147,8 +16139,8 @@ namespace Illuminate\Support\Facades { * * @param \SplFileInfo|string $file * @param array $headers - * @return \Symfony\Component\HttpFoundation\BinaryFileResponse - * @static + * @return \Symfony\Component\HttpFoundation\BinaryFileResponse + * @static */ public static function file($file, $headers = []) { @@ -16163,8 +16155,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectTo($path, $status = 302, $headers = [], $secure = null) { @@ -16179,8 +16171,8 @@ namespace Illuminate\Support\Facades { * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectToRoute($route, $parameters = [], $status = 302, $headers = []) { @@ -16195,8 +16187,8 @@ namespace Illuminate\Support\Facades { * @param mixed $parameters * @param int $status * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectToAction($action, $parameters = [], $status = 302, $headers = []) { @@ -16211,8 +16203,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectGuest($path, $status = 302, $headers = [], $secure = null) { @@ -16227,8 +16219,8 @@ namespace Illuminate\Support\Facades { * @param int $status * @param array $headers * @param bool|null $secure - * @return \Illuminate\Http\RedirectResponse - * @static + * @return \Illuminate\Http\RedirectResponse + * @static */ public static function redirectToIntended($default = '/', $status = 302, $headers = [], $secure = null) { @@ -16242,8 +16234,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -16255,9 +16247,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -16268,8 +16260,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -16279,8 +16271,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -16289,8 +16281,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static \Illuminate\Routing\RouteRegistrar attribute(string $key, mixed $value) * @method static \Illuminate\Routing\RouteRegistrar whereAlpha(array|string $parameters) * @method static \Illuminate\Routing\RouteRegistrar whereAlphaNumeric(array|string $parameters) @@ -16319,8 +16309,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function get($uri, $action = null) { @@ -16333,8 +16323,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function post($uri, $action = null) { @@ -16347,8 +16337,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function put($uri, $action = null) { @@ -16361,8 +16351,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function patch($uri, $action = null) { @@ -16375,8 +16365,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function delete($uri, $action = null) { @@ -16389,8 +16379,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function options($uri, $action = null) { @@ -16403,8 +16393,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function any($uri, $action = null) { @@ -16416,8 +16406,8 @@ namespace Illuminate\Support\Facades { * Register a new fallback route with the router. * * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function fallback($action) { @@ -16431,8 +16421,8 @@ namespace Illuminate\Support\Facades { * @param string $uri * @param string $destination * @param int $status - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function redirect($uri, $destination, $status = 302) { @@ -16445,8 +16435,8 @@ namespace Illuminate\Support\Facades { * * @param string $uri * @param string $destination - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function permanentRedirect($uri, $destination) { @@ -16462,8 +16452,8 @@ namespace Illuminate\Support\Facades { * @param array $data * @param int|array $status * @param array $headers - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function view($uri, $view, $data = [], $status = 200, $headers = []) { @@ -16477,8 +16467,8 @@ namespace Illuminate\Support\Facades { * @param array|string $methods * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function match($methods, $uri, $action = null) { @@ -16491,8 +16481,8 @@ namespace Illuminate\Support\Facades { * * @param array $resources * @param array $options - * @return void - * @static + * @return void + * @static */ public static function resources($resources, $options = []) { @@ -16506,8 +16496,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string $controller * @param array $options - * @return \Illuminate\Routing\PendingResourceRegistration - * @static + * @return \Illuminate\Routing\PendingResourceRegistration + * @static */ public static function resource($name, $controller, $options = []) { @@ -16520,8 +16510,8 @@ namespace Illuminate\Support\Facades { * * @param array $resources * @param array $options - * @return void - * @static + * @return void + * @static */ public static function apiResources($resources, $options = []) { @@ -16535,8 +16525,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string $controller * @param array $options - * @return \Illuminate\Routing\PendingResourceRegistration - * @static + * @return \Illuminate\Routing\PendingResourceRegistration + * @static */ public static function apiResource($name, $controller, $options = []) { @@ -16549,8 +16539,8 @@ namespace Illuminate\Support\Facades { * * @param array $singletons * @param array $options - * @return void - * @static + * @return void + * @static */ public static function singletons($singletons, $options = []) { @@ -16564,8 +16554,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string $controller * @param array $options - * @return \Illuminate\Routing\PendingSingletonResourceRegistration - * @static + * @return \Illuminate\Routing\PendingSingletonResourceRegistration + * @static */ public static function singleton($name, $controller, $options = []) { @@ -16578,8 +16568,8 @@ namespace Illuminate\Support\Facades { * * @param array $singletons * @param array $options - * @return void - * @static + * @return void + * @static */ public static function apiSingletons($singletons, $options = []) { @@ -16593,8 +16583,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string $controller * @param array $options - * @return \Illuminate\Routing\PendingSingletonResourceRegistration - * @static + * @return \Illuminate\Routing\PendingSingletonResourceRegistration + * @static */ public static function apiSingleton($name, $controller, $options = []) { @@ -16607,8 +16597,8 @@ namespace Illuminate\Support\Facades { * * @param array $attributes * @param \Closure|array|string $routes - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function group($attributes, $routes) { @@ -16621,8 +16611,8 @@ namespace Illuminate\Support\Facades { * * @param array $new * @param bool $prependExistingPrefix - * @return array - * @static + * @return array + * @static */ public static function mergeWithLastGroup($new, $prependExistingPrefix = true) { @@ -16633,8 +16623,8 @@ namespace Illuminate\Support\Facades { /** * Get the prefix from the last group on the stack. * - * @return string - * @static + * @return string + * @static */ public static function getLastGroupPrefix() { @@ -16648,8 +16638,8 @@ namespace Illuminate\Support\Facades { * @param array|string $methods * @param string $uri * @param array|string|callable|null $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function addRoute($methods, $uri, $action) { @@ -16663,8 +16653,8 @@ namespace Illuminate\Support\Facades { * @param array|string $methods * @param string $uri * @param mixed $action - * @return \Illuminate\Routing\Route - * @static + * @return \Illuminate\Routing\Route + * @static */ public static function newRoute($methods, $uri, $action) { @@ -16676,8 +16666,8 @@ namespace Illuminate\Support\Facades { * Return the response returned by the given route. * * @param string $name - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function respondWithRoute($name) { @@ -16689,8 +16679,8 @@ namespace Illuminate\Support\Facades { * Dispatch the request to the application. * * @param \Illuminate\Http\Request $request - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function dispatch($request) { @@ -16702,8 +16692,8 @@ namespace Illuminate\Support\Facades { * Dispatch the request to a route and return the response. * * @param \Illuminate\Http\Request $request - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function dispatchToRoute($request) { @@ -16715,8 +16705,8 @@ namespace Illuminate\Support\Facades { * Gather the middleware for the given route with resolved class names. * * @param \Illuminate\Routing\Route $route - * @return array - * @static + * @return array + * @static */ public static function gatherRouteMiddleware($route) { @@ -16729,8 +16719,8 @@ namespace Illuminate\Support\Facades { * * @param array $middleware * @param array $excluded - * @return array - * @static + * @return array + * @static */ public static function resolveMiddleware($middleware, $excluded = []) { @@ -16743,8 +16733,8 @@ namespace Illuminate\Support\Facades { * * @param \Symfony\Component\HttpFoundation\Request $request * @param mixed $response - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function prepareResponse($request, $response) { @@ -16757,8 +16747,8 @@ namespace Illuminate\Support\Facades { * * @param \Symfony\Component\HttpFoundation\Request $request * @param mixed $response - * @return \Symfony\Component\HttpFoundation\Response - * @static + * @return \Symfony\Component\HttpFoundation\Response + * @static */ public static function toResponse($request, $response) { @@ -16769,10 +16759,10 @@ namespace Illuminate\Support\Facades { * Substitute the route bindings onto the route. * * @param \Illuminate\Routing\Route $route - * @return \Illuminate\Routing\Route + * @return \Illuminate\Routing\Route * @throws \Illuminate\Database\Eloquent\ModelNotFoundException<\Illuminate\Database\Eloquent\Model> * @throws \Illuminate\Routing\Exceptions\BackedEnumCaseNotFoundException - * @static + * @static */ public static function substituteBindings($route) { @@ -16784,10 +16774,10 @@ namespace Illuminate\Support\Facades { * Substitute the implicit route bindings for the given route. * * @param \Illuminate\Routing\Route $route - * @return void + * @return void * @throws \Illuminate\Database\Eloquent\ModelNotFoundException<\Illuminate\Database\Eloquent\Model> * @throws \Illuminate\Routing\Exceptions\BackedEnumCaseNotFoundException - * @static + * @static */ public static function substituteImplicitBindings($route) { @@ -16799,8 +16789,8 @@ namespace Illuminate\Support\Facades { * Register a callback to run after implicit bindings are substituted. * * @param callable $callback - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function substituteImplicitBindingsUsing($callback) { @@ -16812,8 +16802,8 @@ namespace Illuminate\Support\Facades { * Register a route matched event listener. * * @param string|callable $callback - * @return void - * @static + * @return void + * @static */ public static function matched($callback) { @@ -16824,8 +16814,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the defined middleware short-hand names. * - * @return array - * @static + * @return array + * @static */ public static function getMiddleware() { @@ -16838,8 +16828,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param string $class - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function aliasMiddleware($name, $class) { @@ -16851,8 +16841,8 @@ namespace Illuminate\Support\Facades { * Check if a middlewareGroup with the given name exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMiddlewareGroup($name) { @@ -16863,8 +16853,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the defined middleware groups. * - * @return array - * @static + * @return array + * @static */ public static function getMiddlewareGroups() { @@ -16877,8 +16867,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param array $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function middlewareGroup($name, $middleware) { @@ -16893,8 +16883,8 @@ namespace Illuminate\Support\Facades { * * @param string $group * @param string $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function prependMiddlewareToGroup($group, $middleware) { @@ -16909,8 +16899,8 @@ namespace Illuminate\Support\Facades { * * @param string $group * @param string $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function pushMiddlewareToGroup($group, $middleware) { @@ -16923,8 +16913,8 @@ namespace Illuminate\Support\Facades { * * @param string $group * @param string $middleware - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function removeMiddlewareFromGroup($group, $middleware) { @@ -16935,8 +16925,8 @@ namespace Illuminate\Support\Facades { /** * Flush the router's middleware groups. * - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function flushMiddlewareGroups() { @@ -16949,8 +16939,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string|callable $binder - * @return void - * @static + * @return void + * @static */ public static function bind($key, $binder) { @@ -16964,8 +16954,8 @@ namespace Illuminate\Support\Facades { * @param string $key * @param string $class * @param \Closure|null $callback - * @return void - * @static + * @return void + * @static */ public static function model($key, $class, $callback = null) { @@ -16977,8 +16967,8 @@ namespace Illuminate\Support\Facades { * Get the binding callback for a given binding. * * @param string $key - * @return \Closure|null - * @static + * @return \Closure|null + * @static */ public static function getBindingCallback($key) { @@ -16989,8 +16979,8 @@ namespace Illuminate\Support\Facades { /** * Get the global "where" patterns. * - * @return array - * @static + * @return array + * @static */ public static function getPatterns() { @@ -17003,8 +16993,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string $pattern - * @return void - * @static + * @return void + * @static */ public static function pattern($key, $pattern) { @@ -17016,8 +17006,8 @@ namespace Illuminate\Support\Facades { * Set a group of global where patterns on all routes. * * @param array $patterns - * @return void - * @static + * @return void + * @static */ public static function patterns($patterns) { @@ -17028,8 +17018,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the router currently has a group stack. * - * @return bool - * @static + * @return bool + * @static */ public static function hasGroupStack() { @@ -17040,8 +17030,8 @@ namespace Illuminate\Support\Facades { /** * Get the current group stack for the router. * - * @return array - * @static + * @return array + * @static */ public static function getGroupStack() { @@ -17054,8 +17044,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param string|null $default - * @return mixed - * @static + * @return mixed + * @static */ public static function input($key, $default = null) { @@ -17066,8 +17056,8 @@ namespace Illuminate\Support\Facades { /** * Get the request currently being dispatched. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function getCurrentRequest() { @@ -17078,8 +17068,8 @@ namespace Illuminate\Support\Facades { /** * Get the currently dispatched route instance. * - * @return \Illuminate\Routing\Route|null - * @static + * @return \Illuminate\Routing\Route|null + * @static */ public static function getCurrentRoute() { @@ -17090,8 +17080,8 @@ namespace Illuminate\Support\Facades { /** * Get the currently dispatched route instance. * - * @return \Illuminate\Routing\Route|null - * @static + * @return \Illuminate\Routing\Route|null + * @static */ public static function current() { @@ -17103,8 +17093,8 @@ namespace Illuminate\Support\Facades { * Check if a route with the given name exists. * * @param string|array $name - * @return bool - * @static + * @return bool + * @static */ public static function has($name) { @@ -17115,8 +17105,8 @@ namespace Illuminate\Support\Facades { /** * Get the current route name. * - * @return string|null - * @static + * @return string|null + * @static */ public static function currentRouteName() { @@ -17128,8 +17118,8 @@ namespace Illuminate\Support\Facades { * Alias for the "currentRouteNamed" method. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function is(...$patterns) { @@ -17141,8 +17131,8 @@ namespace Illuminate\Support\Facades { * Determine if the current route matches a pattern. * * @param mixed $patterns - * @return bool - * @static + * @return bool + * @static */ public static function currentRouteNamed(...$patterns) { @@ -17153,8 +17143,8 @@ namespace Illuminate\Support\Facades { /** * Get the current route action. * - * @return string|null - * @static + * @return string|null + * @static */ public static function currentRouteAction() { @@ -17166,8 +17156,8 @@ namespace Illuminate\Support\Facades { * Alias for the "currentRouteUses" method. * * @param array|string $patterns - * @return bool - * @static + * @return bool + * @static */ public static function uses(...$patterns) { @@ -17179,8 +17169,8 @@ namespace Illuminate\Support\Facades { * Determine if the current route action matches a given action. * * @param string $action - * @return bool - * @static + * @return bool + * @static */ public static function currentRouteUses($action) { @@ -17192,8 +17182,8 @@ namespace Illuminate\Support\Facades { * Set the unmapped global resource parameters to singular. * * @param bool $singular - * @return void - * @static + * @return void + * @static */ public static function singularResourceParameters($singular = true) { @@ -17205,8 +17195,8 @@ namespace Illuminate\Support\Facades { * Set the global resource parameter mapping. * * @param array $parameters - * @return void - * @static + * @return void + * @static */ public static function resourceParameters($parameters = []) { @@ -17218,8 +17208,8 @@ namespace Illuminate\Support\Facades { * Get or set the verbs used in the resource URIs. * * @param array $verbs - * @return array|null - * @static + * @return array|null + * @static */ public static function resourceVerbs($verbs = []) { @@ -17230,8 +17220,8 @@ namespace Illuminate\Support\Facades { /** * Get the underlying route collection. * - * @return \Illuminate\Routing\RouteCollectionInterface - * @static + * @return \Illuminate\Routing\RouteCollectionInterface + * @static */ public static function getRoutes() { @@ -17243,8 +17233,8 @@ namespace Illuminate\Support\Facades { * Set the route collection instance. * * @param \Illuminate\Routing\RouteCollection $routes - * @return void - * @static + * @return void + * @static */ public static function setRoutes($routes) { @@ -17256,8 +17246,8 @@ namespace Illuminate\Support\Facades { * Set the compiled route collection instance. * * @param array $routes - * @return void - * @static + * @return void + * @static */ public static function setCompiledRoutes($routes) { @@ -17269,8 +17259,8 @@ namespace Illuminate\Support\Facades { * Remove any duplicate middleware from the given array. * * @param array $middleware - * @return array - * @static + * @return array + * @static */ public static function uniqueMiddleware($middleware) { @@ -17281,8 +17271,8 @@ namespace Illuminate\Support\Facades { * Set the container instance used by the router. * * @param \Illuminate\Container\Container $container - * @return \Illuminate\Routing\Router - * @static + * @return \Illuminate\Routing\Router + * @static */ public static function setContainer($container) { @@ -17296,8 +17286,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -17309,9 +17299,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -17322,8 +17312,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -17333,8 +17323,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -17346,9 +17336,9 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -17361,7 +17351,7 @@ namespace Illuminate\Support\Facades { * * @param (callable($this): mixed)|null $callback * @return ($callback is null ? \Illuminate\Support\HigherOrderTapProxy : $this) - * @static + * @static */ public static function tap($callback = null) { @@ -17371,8 +17361,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static \Illuminate\Console\Scheduling\PendingEventAttributes withoutOverlapping(int $expiresAt = 1440) * @method static void mergeAttributes(\Illuminate\Console\Scheduling\Event $event) * @method static \Illuminate\Console\Scheduling\PendingEventAttributes user(string $user) @@ -17443,8 +17431,8 @@ namespace Illuminate\Support\Facades { * * @param string|callable $callback * @param array $parameters - * @return \Illuminate\Console\Scheduling\CallbackEvent - * @static + * @return \Illuminate\Console\Scheduling\CallbackEvent + * @static */ public static function call($callback, $parameters = []) { @@ -17457,8 +17445,8 @@ namespace Illuminate\Support\Facades { * * @param string $command * @param array $parameters - * @return \Illuminate\Console\Scheduling\Event - * @static + * @return \Illuminate\Console\Scheduling\Event + * @static */ public static function command($command, $parameters = []) { @@ -17472,8 +17460,8 @@ namespace Illuminate\Support\Facades { * @param object|string $job * @param string|null $queue * @param string|null $connection - * @return \Illuminate\Console\Scheduling\CallbackEvent - * @static + * @return \Illuminate\Console\Scheduling\CallbackEvent + * @static */ public static function job($job, $queue = null, $connection = null) { @@ -17486,8 +17474,8 @@ namespace Illuminate\Support\Facades { * * @param string $command * @param array $parameters - * @return \Illuminate\Console\Scheduling\Event - * @static + * @return \Illuminate\Console\Scheduling\Event + * @static */ public static function exec($command, $parameters = []) { @@ -17499,9 +17487,9 @@ namespace Illuminate\Support\Facades { * Create new schedule group. * * @param \Illuminate\Console\Scheduling\Event $event - * @return void + * @return void * @throws \RuntimeException - * @static + * @static */ public static function group($events) { @@ -17514,8 +17502,8 @@ namespace Illuminate\Support\Facades { * * @param string|int $key * @param array $value - * @return string - * @static + * @return string + * @static */ public static function compileArrayInput($key, $value) { @@ -17528,8 +17516,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Console\Scheduling\Event $event * @param \DateTimeInterface $time - * @return bool - * @static + * @return bool + * @static */ public static function serverShouldRun($event, $time) { @@ -17541,8 +17529,8 @@ namespace Illuminate\Support\Facades { * Get all of the events on the schedule that are due. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function dueEvents($app) { @@ -17553,8 +17541,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the events on the schedule. * - * @return \Illuminate\Console\Scheduling\Event[] - * @static + * @return \Illuminate\Console\Scheduling\Event[] + * @static */ public static function events() { @@ -17566,8 +17554,8 @@ namespace Illuminate\Support\Facades { * Specify the cache store that should be used to store mutexes. * * @param string $store - * @return \Illuminate\Console\Scheduling\Schedule - * @static + * @return \Illuminate\Console\Scheduling\Schedule + * @static */ public static function useCache($store) { @@ -17581,8 +17569,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -17594,9 +17582,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -17607,8 +17595,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -17618,8 +17606,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -17631,9 +17619,9 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -17643,8 +17631,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Database\Schema\Builder */ class Schema { @@ -17652,8 +17638,8 @@ namespace Illuminate\Support\Facades { * Create a database in the schema. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function createDatabase($name) { @@ -17665,8 +17651,8 @@ namespace Illuminate\Support\Facades { * Drop a database from the schema if the database exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function dropDatabaseIfExists($name) { @@ -17678,8 +17664,8 @@ namespace Illuminate\Support\Facades { * Determine if the given table exists. * * @param string $table - * @return bool - * @static + * @return bool + * @static */ public static function hasTable($table) { @@ -17690,8 +17676,8 @@ namespace Illuminate\Support\Facades { /** * Get the tables for the database. * - * @return array - * @static + * @return array + * @static */ public static function getTables() { @@ -17702,8 +17688,8 @@ namespace Illuminate\Support\Facades { /** * Get the views for the database. * - * @return array - * @static + * @return array + * @static */ public static function getViews() { @@ -17715,8 +17701,8 @@ namespace Illuminate\Support\Facades { * Get the columns for a given table. * * @param string $table - * @return array - * @static + * @return array + * @static */ public static function getColumns($table) { @@ -17728,8 +17714,8 @@ namespace Illuminate\Support\Facades { * Get the indexes for a given table. * * @param string $table - * @return array - * @static + * @return array + * @static */ public static function getIndexes($table) { @@ -17741,8 +17727,8 @@ namespace Illuminate\Support\Facades { * Get the foreign keys for a given table. * * @param string $table - * @return array - * @static + * @return array + * @static */ public static function getForeignKeys($table) { @@ -17753,8 +17739,8 @@ namespace Illuminate\Support\Facades { /** * Drop all tables from the database. * - * @return void - * @static + * @return void + * @static */ public static function dropAllTables() { @@ -17765,8 +17751,8 @@ namespace Illuminate\Support\Facades { /** * Drop all views from the database. * - * @return void - * @static + * @return void + * @static */ public static function dropAllViews() { @@ -17778,8 +17764,8 @@ namespace Illuminate\Support\Facades { * Set the default string length for migrations. * * @param int $length - * @return void - * @static + * @return void + * @static */ public static function defaultStringLength($length) { @@ -17791,9 +17777,9 @@ namespace Illuminate\Support\Facades { * Set the default morph key type for migrations. * * @param string $type - * @return void + * @return void * @throws \InvalidArgumentException - * @static + * @static */ public static function defaultMorphKeyType($type) { @@ -17804,8 +17790,8 @@ namespace Illuminate\Support\Facades { /** * Set the default morph key type for migrations to UUIDs. * - * @return void - * @static + * @return void + * @static */ public static function morphUsingUuids() { @@ -17816,8 +17802,8 @@ namespace Illuminate\Support\Facades { /** * Set the default morph key type for migrations to ULIDs. * - * @return void - * @static + * @return void + * @static */ public static function morphUsingUlids() { @@ -17829,8 +17815,8 @@ namespace Illuminate\Support\Facades { * Determine if the given view exists. * * @param string $view - * @return bool - * @static + * @return bool + * @static */ public static function hasView($view) { @@ -17842,8 +17828,8 @@ namespace Illuminate\Support\Facades { /** * Get the names of the tables that belong to the database. * - * @return array - * @static + * @return array + * @static */ public static function getTableListing() { @@ -17855,8 +17841,8 @@ namespace Illuminate\Support\Facades { /** * Get the user-defined types that belong to the database. * - * @return array - * @static + * @return array + * @static */ public static function getTypes() { @@ -17870,8 +17856,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param string $column - * @return bool - * @static + * @return bool + * @static */ public static function hasColumn($table, $column) { @@ -17885,8 +17871,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param array $columns - * @return bool - * @static + * @return bool + * @static */ public static function hasColumns($table, $columns) { @@ -17901,8 +17887,8 @@ namespace Illuminate\Support\Facades { * @param string $table * @param string $column * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function whenTableHasColumn($table, $column, $callback) { @@ -17917,8 +17903,8 @@ namespace Illuminate\Support\Facades { * @param string $table * @param string $column * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function whenTableDoesntHaveColumn($table, $column, $callback) { @@ -17933,8 +17919,8 @@ namespace Illuminate\Support\Facades { * @param string $table * @param string $column * @param bool $fullDefinition - * @return string - * @static + * @return string + * @static */ public static function getColumnType($table, $column, $fullDefinition = false) { @@ -17947,8 +17933,8 @@ namespace Illuminate\Support\Facades { * Get the column listing for a given table. * * @param string $table - * @return array - * @static + * @return array + * @static */ public static function getColumnListing($table) { @@ -17961,8 +17947,8 @@ namespace Illuminate\Support\Facades { * Get the names of the indexes for a given table. * * @param string $table - * @return array - * @static + * @return array + * @static */ public static function getIndexListing($table) { @@ -17977,8 +17963,8 @@ namespace Illuminate\Support\Facades { * @param string $table * @param string|array $index * @param string|null $type - * @return bool - * @static + * @return bool + * @static */ public static function hasIndex($table, $index, $type = null) { @@ -17992,8 +17978,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function table($table, $callback) { @@ -18007,8 +17993,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function create($table, $callback) { @@ -18021,8 +18007,8 @@ namespace Illuminate\Support\Facades { * Drop a table from the schema. * * @param string $table - * @return void - * @static + * @return void + * @static */ public static function drop($table) { @@ -18035,8 +18021,8 @@ namespace Illuminate\Support\Facades { * Drop a table from the schema if it exists. * * @param string $table - * @return void - * @static + * @return void + * @static */ public static function dropIfExists($table) { @@ -18050,8 +18036,8 @@ namespace Illuminate\Support\Facades { * * @param string $table * @param string|array $columns - * @return void - * @static + * @return void + * @static */ public static function dropColumns($table, $columns) { @@ -18063,9 +18049,9 @@ namespace Illuminate\Support\Facades { /** * Drop all types from the database. * - * @return void + * @return void * @throws \LogicException - * @static + * @static */ public static function dropAllTypes() { @@ -18079,8 +18065,8 @@ namespace Illuminate\Support\Facades { * * @param string $from * @param string $to - * @return void - * @static + * @return void + * @static */ public static function rename($from, $to) { @@ -18092,8 +18078,8 @@ namespace Illuminate\Support\Facades { /** * Enable foreign key constraints. * - * @return bool - * @static + * @return bool + * @static */ public static function enableForeignKeyConstraints() { @@ -18105,8 +18091,8 @@ namespace Illuminate\Support\Facades { /** * Disable foreign key constraints. * - * @return bool - * @static + * @return bool + * @static */ public static function disableForeignKeyConstraints() { @@ -18119,8 +18105,8 @@ namespace Illuminate\Support\Facades { * Disable foreign key constraints during the execution of a callback. * * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function withoutForeignKeyConstraints($callback) { @@ -18132,8 +18118,8 @@ namespace Illuminate\Support\Facades { /** * Get the database connection instance. * - * @return \Illuminate\Database\Connection - * @static + * @return \Illuminate\Database\Connection + * @static */ public static function getConnection() { @@ -18146,8 +18132,8 @@ namespace Illuminate\Support\Facades { * Set the database connection instance. * * @param \Illuminate\Database\Connection $connection - * @return \Illuminate\Database\Schema\MySqlBuilder - * @static + * @return \Illuminate\Database\Schema\MySqlBuilder + * @static */ public static function setConnection($connection) { @@ -18160,8 +18146,8 @@ namespace Illuminate\Support\Facades { * Set the Schema Blueprint resolver callback. * * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function blueprintResolver($resolver) { @@ -18176,8 +18162,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -18190,9 +18176,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -18204,8 +18190,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -18216,8 +18202,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -18227,16 +18213,14 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Session\SessionManager */ class Session { /** * Determine if requests for the same session should wait for each to finish before executing. * - * @return bool - * @static + * @return bool + * @static */ public static function shouldBlock() { @@ -18247,8 +18231,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the cache store / driver that should be used to acquire session locks. * - * @return string|null - * @static + * @return string|null + * @static */ public static function blockDriver() { @@ -18259,8 +18243,8 @@ namespace Illuminate\Support\Facades { /** * Get the maximum number of seconds the session lock should be held for. * - * @return int - * @static + * @return int + * @static */ public static function defaultRouteBlockLockSeconds() { @@ -18271,8 +18255,8 @@ namespace Illuminate\Support\Facades { /** * Get the maximum number of seconds to wait while attempting to acquire a route block session lock. * - * @return int - * @static + * @return int + * @static */ public static function defaultRouteBlockWaitSeconds() { @@ -18283,8 +18267,8 @@ namespace Illuminate\Support\Facades { /** * Get the session configuration. * - * @return array - * @static + * @return array + * @static */ public static function getSessionConfig() { @@ -18295,8 +18279,8 @@ namespace Illuminate\Support\Facades { /** * Get the default session driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -18308,8 +18292,8 @@ namespace Illuminate\Support\Facades { * Set the default session driver name. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setDefaultDriver($name) { @@ -18321,9 +18305,9 @@ namespace Illuminate\Support\Facades { * Get a driver instance. * * @param string|null $driver - * @return mixed + * @return mixed * @throws \InvalidArgumentException - * @static + * @static */ public static function driver($driver = null) { @@ -18337,8 +18321,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Session\SessionManager - * @static + * @return \Illuminate\Session\SessionManager + * @static */ public static function extend($driver, $callback) { @@ -18350,8 +18334,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the created "drivers". * - * @return array - * @static + * @return array + * @static */ public static function getDrivers() { @@ -18363,8 +18347,8 @@ namespace Illuminate\Support\Facades { /** * Get the container instance used by the manager. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { @@ -18377,8 +18361,8 @@ namespace Illuminate\Support\Facades { * Set the container instance used by the manager. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Session\SessionManager - * @static + * @return \Illuminate\Session\SessionManager + * @static */ public static function setContainer($container) { @@ -18390,8 +18374,8 @@ namespace Illuminate\Support\Facades { /** * Forget all of the resolved driver instances. * - * @return \Illuminate\Session\SessionManager - * @static + * @return \Illuminate\Session\SessionManager + * @static */ public static function forgetDrivers() { @@ -18403,8 +18387,8 @@ namespace Illuminate\Support\Facades { /** * Start the session, reading the data from a handler. * - * @return bool - * @static + * @return bool + * @static */ public static function start() { @@ -18415,8 +18399,8 @@ namespace Illuminate\Support\Facades { /** * Save the session data to storage. * - * @return void - * @static + * @return void + * @static */ public static function save() { @@ -18427,8 +18411,8 @@ namespace Illuminate\Support\Facades { /** * Age the flash data for the session. * - * @return void - * @static + * @return void + * @static */ public static function ageFlashData() { @@ -18439,8 +18423,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the session data. * - * @return array - * @static + * @return array + * @static */ public static function all() { @@ -18452,8 +18436,8 @@ namespace Illuminate\Support\Facades { * Get a subset of the session data. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function only($keys) { @@ -18465,8 +18449,8 @@ namespace Illuminate\Support\Facades { * Get all the session data except for a specified array of items. * * @param array $keys - * @return array - * @static + * @return array + * @static */ public static function except($keys) { @@ -18478,8 +18462,8 @@ namespace Illuminate\Support\Facades { * Checks if a key exists. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function exists($key) { @@ -18491,8 +18475,8 @@ namespace Illuminate\Support\Facades { * Determine if the given key is missing from the session data. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function missing($key) { @@ -18504,8 +18488,8 @@ namespace Illuminate\Support\Facades { * Determine if a key is present and not null. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function has($key) { @@ -18517,8 +18501,8 @@ namespace Illuminate\Support\Facades { * Determine if any of the given keys are present and not null. * * @param string|array $key - * @return bool - * @static + * @return bool + * @static */ public static function hasAny($key) { @@ -18531,8 +18515,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function get($key, $default = null) { @@ -18545,8 +18529,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function pull($key, $default = null) { @@ -18558,8 +18542,8 @@ namespace Illuminate\Support\Facades { * Determine if the session contains old input. * * @param string|null $key - * @return bool - * @static + * @return bool + * @static */ public static function hasOldInput($key = null) { @@ -18572,8 +18556,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function getOldInput($key = null, $default = null) { @@ -18585,8 +18569,8 @@ namespace Illuminate\Support\Facades { * Replace the given session attributes entirely. * * @param array $attributes - * @return void - * @static + * @return void + * @static */ public static function replace($attributes) { @@ -18599,8 +18583,8 @@ namespace Illuminate\Support\Facades { * * @param string|array $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function put($key, $value = null) { @@ -18613,8 +18597,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param \Closure $callback - * @return mixed - * @static + * @return mixed + * @static */ public static function remember($key, $callback) { @@ -18627,8 +18611,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function push($key, $value) { @@ -18641,8 +18625,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $amount - * @return mixed - * @static + * @return mixed + * @static */ public static function increment($key, $amount = 1) { @@ -18655,8 +18639,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param int $amount - * @return int - * @static + * @return int + * @static */ public static function decrement($key, $amount = 1) { @@ -18669,8 +18653,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function flash($key, $value = true) { @@ -18683,8 +18667,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $value - * @return void - * @static + * @return void + * @static */ public static function now($key, $value) { @@ -18695,8 +18679,8 @@ namespace Illuminate\Support\Facades { /** * Reflash all of the session flash data. * - * @return void - * @static + * @return void + * @static */ public static function reflash() { @@ -18708,8 +18692,8 @@ namespace Illuminate\Support\Facades { * Reflash a subset of the current flash data. * * @param array|mixed $keys - * @return void - * @static + * @return void + * @static */ public static function keep($keys = null) { @@ -18721,8 +18705,8 @@ namespace Illuminate\Support\Facades { * Flash an input array to the session. * * @param array $value - * @return void - * @static + * @return void + * @static */ public static function flashInput($value) { @@ -18734,8 +18718,8 @@ namespace Illuminate\Support\Facades { * Remove an item from the session, returning its value. * * @param string $key - * @return mixed - * @static + * @return mixed + * @static */ public static function remove($key) { @@ -18747,8 +18731,8 @@ namespace Illuminate\Support\Facades { * Remove one or many items from the session. * * @param string|array $keys - * @return void - * @static + * @return void + * @static */ public static function forget($keys) { @@ -18759,8 +18743,8 @@ namespace Illuminate\Support\Facades { /** * Remove all of the items from the session. * - * @return void - * @static + * @return void + * @static */ public static function flush() { @@ -18771,8 +18755,8 @@ namespace Illuminate\Support\Facades { /** * Flush the session data and regenerate the ID. * - * @return bool - * @static + * @return bool + * @static */ public static function invalidate() { @@ -18784,8 +18768,8 @@ namespace Illuminate\Support\Facades { * Generate a new session identifier. * * @param bool $destroy - * @return bool - * @static + * @return bool + * @static */ public static function regenerate($destroy = false) { @@ -18797,8 +18781,8 @@ namespace Illuminate\Support\Facades { * Generate a new session ID for the session. * * @param bool $destroy - * @return bool - * @static + * @return bool + * @static */ public static function migrate($destroy = false) { @@ -18809,8 +18793,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the session has been started. * - * @return bool - * @static + * @return bool + * @static */ public static function isStarted() { @@ -18821,8 +18805,8 @@ namespace Illuminate\Support\Facades { /** * Get the name of the session. * - * @return string - * @static + * @return string + * @static */ public static function getName() { @@ -18834,8 +18818,8 @@ namespace Illuminate\Support\Facades { * Set the name of the session. * * @param string $name - * @return void - * @static + * @return void + * @static */ public static function setName($name) { @@ -18846,8 +18830,8 @@ namespace Illuminate\Support\Facades { /** * Get the current session ID. * - * @return string - * @static + * @return string + * @static */ public static function id() { @@ -18858,8 +18842,8 @@ namespace Illuminate\Support\Facades { /** * Get the current session ID. * - * @return string - * @static + * @return string + * @static */ public static function getId() { @@ -18871,8 +18855,8 @@ namespace Illuminate\Support\Facades { * Set the session ID. * * @param string|null $id - * @return void - * @static + * @return void + * @static */ public static function setId($id) { @@ -18884,8 +18868,8 @@ namespace Illuminate\Support\Facades { * Determine if this is a valid session ID. * * @param string|null $id - * @return bool - * @static + * @return bool + * @static */ public static function isValidId($id) { @@ -18897,8 +18881,8 @@ namespace Illuminate\Support\Facades { * Set the existence of the session on the handler if applicable. * * @param bool $value - * @return void - * @static + * @return void + * @static */ public static function setExists($value) { @@ -18909,8 +18893,8 @@ namespace Illuminate\Support\Facades { /** * Get the CSRF token value. * - * @return string - * @static + * @return string + * @static */ public static function token() { @@ -18921,8 +18905,8 @@ namespace Illuminate\Support\Facades { /** * Regenerate the CSRF token value. * - * @return void - * @static + * @return void + * @static */ public static function regenerateToken() { @@ -18933,8 +18917,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the previous URI is available. * - * @return bool - * @static + * @return bool + * @static */ public static function hasPreviousUri() { @@ -18945,9 +18929,9 @@ namespace Illuminate\Support\Facades { /** * Get the previous URL from the session as a URI instance. * - * @return \Illuminate\Support\Uri + * @return \Illuminate\Support\Uri * @throws \RuntimeException - * @static + * @static */ public static function previousUri() { @@ -18958,8 +18942,8 @@ namespace Illuminate\Support\Facades { /** * Get the previous URL from the session. * - * @return string|null - * @static + * @return string|null + * @static */ public static function previousUrl() { @@ -18971,8 +18955,8 @@ namespace Illuminate\Support\Facades { * Set the "previous" URL in the session. * * @param string $url - * @return void - * @static + * @return void + * @static */ public static function setPreviousUrl($url) { @@ -18983,8 +18967,8 @@ namespace Illuminate\Support\Facades { /** * Specify that the user has confirmed their password. * - * @return void - * @static + * @return void + * @static */ public static function passwordConfirmed() { @@ -18995,8 +18979,8 @@ namespace Illuminate\Support\Facades { /** * Get the underlying session handler implementation. * - * @return \SessionHandlerInterface - * @static + * @return \SessionHandlerInterface + * @static */ public static function getHandler() { @@ -19008,8 +18992,8 @@ namespace Illuminate\Support\Facades { * Set the underlying session handler implementation. * * @param \SessionHandlerInterface $handler - * @return \SessionHandlerInterface - * @static + * @return \SessionHandlerInterface + * @static */ public static function setHandler($handler) { @@ -19020,8 +19004,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the session handler needs a request. * - * @return bool - * @static + * @return bool + * @static */ public static function handlerNeedsRequest() { @@ -19033,8 +19017,8 @@ namespace Illuminate\Support\Facades { * Set the request on the handler instance. * * @param \Illuminate\Http\Request $request - * @return void - * @static + * @return void + * @static */ public static function setRequestOnHandler($request) { @@ -19048,8 +19032,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -19061,9 +19045,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -19074,8 +19058,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -19085,8 +19069,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -19095,8 +19079,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @method static bool has(string $location) * @method static string read(string $location) * @method static \League\Flysystem\DirectoryListing listContents(string $location, bool $deep = false) @@ -19111,8 +19093,8 @@ namespace Illuminate\Support\Facades { * Get a filesystem instance. * * @param string|null $name - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function drive($name = null) { @@ -19124,8 +19106,8 @@ namespace Illuminate\Support\Facades { * Get a filesystem instance. * * @param string|null $name - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function disk($name = null) { @@ -19136,8 +19118,8 @@ namespace Illuminate\Support\Facades { /** * Get a default cloud filesystem instance. * - * @return \Illuminate\Contracts\Filesystem\Cloud - * @static + * @return \Illuminate\Contracts\Filesystem\Cloud + * @static */ public static function cloud() { @@ -19149,8 +19131,8 @@ namespace Illuminate\Support\Facades { * Build an on-demand disk. * * @param string|array $config - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function build($config) { @@ -19163,8 +19145,8 @@ namespace Illuminate\Support\Facades { * * @param array $config * @param string $name - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function createLocalDriver($config, $name = 'local') { @@ -19176,8 +19158,8 @@ namespace Illuminate\Support\Facades { * Create an instance of the ftp driver. * * @param array $config - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function createFtpDriver($config) { @@ -19189,8 +19171,8 @@ namespace Illuminate\Support\Facades { * Create an instance of the sftp driver. * * @param array $config - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function createSftpDriver($config) { @@ -19202,8 +19184,8 @@ namespace Illuminate\Support\Facades { * Create an instance of the Amazon S3 driver. * * @param array $config - * @return \Illuminate\Contracts\Filesystem\Cloud - * @static + * @return \Illuminate\Contracts\Filesystem\Cloud + * @static */ public static function createS3Driver($config) { @@ -19215,8 +19197,8 @@ namespace Illuminate\Support\Facades { * Create a scoped driver. * * @param array $config - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function createScopedDriver($config) { @@ -19229,8 +19211,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param mixed $disk - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function set($name, $disk) { @@ -19241,8 +19223,8 @@ namespace Illuminate\Support\Facades { /** * Get the default driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultDriver() { @@ -19253,8 +19235,8 @@ namespace Illuminate\Support\Facades { /** * Get the default cloud driver name. * - * @return string - * @static + * @return string + * @static */ public static function getDefaultCloudDriver() { @@ -19266,8 +19248,8 @@ namespace Illuminate\Support\Facades { * Unset the given disk instances. * * @param array|string $disk - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function forgetDisk($disk) { @@ -19279,8 +19261,8 @@ namespace Illuminate\Support\Facades { * Disconnect the given disk and remove from local cache. * * @param string|null $name - * @return void - * @static + * @return void + * @static */ public static function purge($name = null) { @@ -19293,8 +19275,8 @@ namespace Illuminate\Support\Facades { * * @param string $driver * @param \Closure $callback - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function extend($driver, $callback) { @@ -19306,8 +19288,8 @@ namespace Illuminate\Support\Facades { * Set the application instance used by the manager. * * @param \Illuminate\Contracts\Foundation\Application $app - * @return \Illuminate\Filesystem\FilesystemManager - * @static + * @return \Illuminate\Filesystem\FilesystemManager + * @static */ public static function setApplication($app) { @@ -19318,8 +19300,8 @@ namespace Illuminate\Support\Facades { /** * Determine if temporary URLs can be generated. * - * @return bool - * @static + * @return bool + * @static */ public static function providesTemporaryUrls() { @@ -19333,8 +19315,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param \DateTimeInterface $expiration * @param array $options - * @return string - * @static + * @return string + * @static */ public static function temporaryUrl($path, $expiration, $options = []) { @@ -19346,8 +19328,8 @@ namespace Illuminate\Support\Facades { * Specify the name of the disk the adapter is managing. * * @param string $disk - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function diskName($disk) { @@ -19360,8 +19342,8 @@ namespace Illuminate\Support\Facades { * * @param bool $serve * @param \Closure|null $urlGeneratorResolver - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function shouldServeSignedUrls($serve = true, $urlGeneratorResolver = null) { @@ -19374,8 +19356,8 @@ namespace Illuminate\Support\Facades { * * @param string|array $path * @param string|null $content - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function assertExists($path, $content = null) { @@ -19390,8 +19372,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param int $count * @param bool $recursive - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function assertCount($path, $count, $recursive = false) { @@ -19404,8 +19386,8 @@ namespace Illuminate\Support\Facades { * Assert that the given file or directory does not exist. * * @param string|array $path - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function assertMissing($path) { @@ -19418,8 +19400,8 @@ namespace Illuminate\Support\Facades { * Assert that the given directory is empty. * * @param string $path - * @return \Illuminate\Filesystem\LocalFilesystemAdapter - * @static + * @return \Illuminate\Filesystem\LocalFilesystemAdapter + * @static */ public static function assertDirectoryEmpty($path) { @@ -19432,8 +19414,8 @@ namespace Illuminate\Support\Facades { * Determine if a file or directory exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function exists($path) { @@ -19446,8 +19428,8 @@ namespace Illuminate\Support\Facades { * Determine if a file or directory is missing. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function missing($path) { @@ -19460,8 +19442,8 @@ namespace Illuminate\Support\Facades { * Determine if a file exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function fileExists($path) { @@ -19474,8 +19456,8 @@ namespace Illuminate\Support\Facades { * Determine if a file is missing. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function fileMissing($path) { @@ -19488,8 +19470,8 @@ namespace Illuminate\Support\Facades { * Determine if a directory exists. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function directoryExists($path) { @@ -19502,8 +19484,8 @@ namespace Illuminate\Support\Facades { * Determine if a directory is missing. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function directoryMissing($path) { @@ -19516,8 +19498,8 @@ namespace Illuminate\Support\Facades { * Get the full path to the file that exists at the given relative path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function path($path) { @@ -19530,8 +19512,8 @@ namespace Illuminate\Support\Facades { * Get the contents of a file. * * @param string $path - * @return string|null - * @static + * @return string|null + * @static */ public static function get($path) { @@ -19545,8 +19527,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param int $flags - * @return array|null - * @static + * @return array|null + * @static */ public static function json($path, $flags = 0) { @@ -19562,8 +19544,8 @@ namespace Illuminate\Support\Facades { * @param string|null $name * @param array $headers * @param string|null $disposition - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function response($path, $name = null, $headers = [], $disposition = 'inline') { @@ -19579,8 +19561,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param string|null $name * @param array $headers - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function serve($request, $path, $name = null, $headers = []) { @@ -19595,8 +19577,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param string|null $name * @param array $headers - * @return \Symfony\Component\HttpFoundation\StreamedResponse - * @static + * @return \Symfony\Component\HttpFoundation\StreamedResponse + * @static */ public static function download($path, $name = null, $headers = []) { @@ -19611,8 +19593,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param \Psr\Http\Message\StreamInterface|\Illuminate\Http\File|\Illuminate\Http\UploadedFile|string|resource $contents * @param mixed $options - * @return string|bool - * @static + * @return string|bool + * @static */ public static function put($path, $contents, $options = []) { @@ -19627,8 +19609,8 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $path * @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string|array|null $file * @param mixed $options - * @return string|false - * @static + * @return string|false + * @static */ public static function putFile($path, $file = null, $options = []) { @@ -19644,8 +19626,8 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string|array|null $file * @param string|array|null $name * @param mixed $options - * @return string|false - * @static + * @return string|false + * @static */ public static function putFileAs($path, $file, $name = null, $options = []) { @@ -19658,8 +19640,8 @@ namespace Illuminate\Support\Facades { * Get the visibility for the given path. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function getVisibility($path) { @@ -19673,8 +19655,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param string $visibility - * @return bool - * @static + * @return bool + * @static */ public static function setVisibility($path, $visibility) { @@ -19689,8 +19671,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param string $data * @param string $separator - * @return bool - * @static + * @return bool + * @static */ public static function prepend($path, $data, $separator = ' ') @@ -19706,8 +19688,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param string $data * @param string $separator - * @return bool - * @static + * @return bool + * @static */ public static function append($path, $data, $separator = ' ') @@ -19721,8 +19703,8 @@ namespace Illuminate\Support\Facades { * Delete the file at a given path. * * @param string|array $paths - * @return bool - * @static + * @return bool + * @static */ public static function delete($paths) { @@ -19736,8 +19718,8 @@ namespace Illuminate\Support\Facades { * * @param string $from * @param string $to - * @return bool - * @static + * @return bool + * @static */ public static function copy($from, $to) { @@ -19751,8 +19733,8 @@ namespace Illuminate\Support\Facades { * * @param string $from * @param string $to - * @return bool - * @static + * @return bool + * @static */ public static function move($from, $to) { @@ -19765,8 +19747,8 @@ namespace Illuminate\Support\Facades { * Get the file size of a given file. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function size($path) { @@ -19778,9 +19760,9 @@ namespace Illuminate\Support\Facades { /** * Get the checksum for a file. * - * @return string|false + * @return string|false * @throws UnableToProvideChecksum - * @static + * @static */ public static function checksum($path, $options = []) { @@ -19793,8 +19775,8 @@ namespace Illuminate\Support\Facades { * Get the mime-type of a given file. * * @param string $path - * @return string|false - * @static + * @return string|false + * @static */ public static function mimeType($path) { @@ -19807,8 +19789,8 @@ namespace Illuminate\Support\Facades { * Get the file's last modification time. * * @param string $path - * @return int - * @static + * @return int + * @static */ public static function lastModified($path) { @@ -19822,7 +19804,7 @@ namespace Illuminate\Support\Facades { * * @param string $path * @return resource|null The path resource or null on failure. - * @static + * @static */ public static function readStream($path) { @@ -19837,8 +19819,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param resource $resource * @param array $options - * @return bool - * @static + * @return bool + * @static */ public static function writeStream($path, $resource, $options = []) { @@ -19851,9 +19833,9 @@ namespace Illuminate\Support\Facades { * Get the URL for the file at the given path. * * @param string $path - * @return string + * @return string * @throws \RuntimeException - * @static + * @static */ public static function url($path) { @@ -19868,9 +19850,9 @@ namespace Illuminate\Support\Facades { * @param string $path * @param \DateTimeInterface $expiration * @param array $options - * @return array + * @return array * @throws \RuntimeException - * @static + * @static */ public static function temporaryUploadUrl($path, $expiration, $options = []) { @@ -19884,8 +19866,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $directory * @param bool $recursive - * @return array - * @static + * @return array + * @static */ public static function files($directory = null, $recursive = false) { @@ -19898,8 +19880,8 @@ namespace Illuminate\Support\Facades { * Get all of the files from the given directory (recursive). * * @param string|null $directory - * @return array - * @static + * @return array + * @static */ public static function allFiles($directory = null) { @@ -19913,8 +19895,8 @@ namespace Illuminate\Support\Facades { * * @param string|null $directory * @param bool $recursive - * @return array - * @static + * @return array + * @static */ public static function directories($directory = null, $recursive = false) { @@ -19927,8 +19909,8 @@ namespace Illuminate\Support\Facades { * Get all the directories within a given directory (recursive). * * @param string|null $directory - * @return array - * @static + * @return array + * @static */ public static function allDirectories($directory = null) { @@ -19941,8 +19923,8 @@ namespace Illuminate\Support\Facades { * Create a directory. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function makeDirectory($path) { @@ -19955,8 +19937,8 @@ namespace Illuminate\Support\Facades { * Recursively delete a directory. * * @param string $directory - * @return bool - * @static + * @return bool + * @static */ public static function deleteDirectory($directory) { @@ -19968,8 +19950,8 @@ namespace Illuminate\Support\Facades { /** * Get the Flysystem driver. * - * @return \League\Flysystem\FilesystemOperator - * @static + * @return \League\Flysystem\FilesystemOperator + * @static */ public static function getDriver() { @@ -19981,8 +19963,8 @@ namespace Illuminate\Support\Facades { /** * Get the Flysystem adapter. * - * @return \League\Flysystem\FilesystemAdapter - * @static + * @return \League\Flysystem\FilesystemAdapter + * @static */ public static function getAdapter() { @@ -19994,8 +19976,8 @@ namespace Illuminate\Support\Facades { /** * Get the configuration values. * - * @return array - * @static + * @return array + * @static */ public static function getConfig() { @@ -20008,8 +19990,8 @@ namespace Illuminate\Support\Facades { * Define a custom callback that generates file download responses. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function serveUsing($callback) { @@ -20022,8 +20004,8 @@ namespace Illuminate\Support\Facades { * Define a custom temporary URL builder callback. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function buildTemporaryUrlsUsing($callback) { @@ -20040,8 +20022,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value * @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback * @param (callable($this, TWhenParameter): TWhenReturnType)|null $default - * @return $this|TWhenReturnType - * @static + * @return $this|TWhenReturnType + * @static */ public static function when($value = null, $callback = null, $default = null) { @@ -20057,8 +20039,8 @@ namespace Illuminate\Support\Facades { * @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default - * @return $this|TUnlessReturnType - * @static + * @return $this|TUnlessReturnType + * @static */ public static function unless($value = null, $callback = null, $default = null) { @@ -20072,8 +20054,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -20086,9 +20068,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -20100,8 +20082,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -20112,8 +20094,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -20126,9 +20108,9 @@ namespace Illuminate\Support\Facades { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { @@ -20139,16 +20121,14 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Routing\UrlGenerator */ class URL { /** * Get the full URL for the current request. * - * @return string - * @static + * @return string + * @static */ public static function full() { @@ -20159,8 +20139,8 @@ namespace Illuminate\Support\Facades { /** * Get the current URL for the request. * - * @return string - * @static + * @return string + * @static */ public static function current() { @@ -20172,8 +20152,8 @@ namespace Illuminate\Support\Facades { * Get the URL for the previous request. * * @param mixed $fallback - * @return string - * @static + * @return string + * @static */ public static function previous($fallback = false) { @@ -20185,8 +20165,8 @@ namespace Illuminate\Support\Facades { * Get the previous path info for the request. * * @param mixed $fallback - * @return string - * @static + * @return string + * @static */ public static function previousPath($fallback = false) { @@ -20200,8 +20180,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param mixed $extra * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function to($path, $extra = [], $secure = null) { @@ -20216,8 +20196,8 @@ namespace Illuminate\Support\Facades { * @param array $query * @param mixed $extra * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function query($path, $query = [], $extra = [], $secure = null) { @@ -20230,8 +20210,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param array $parameters - * @return string - * @static + * @return string + * @static */ public static function secure($path, $parameters = []) { @@ -20244,8 +20224,8 @@ namespace Illuminate\Support\Facades { * * @param string $path * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function asset($path, $secure = null) { @@ -20257,8 +20237,8 @@ namespace Illuminate\Support\Facades { * Generate the URL to a secure asset. * * @param string $path - * @return string - * @static + * @return string + * @static */ public static function secureAsset($path) { @@ -20272,8 +20252,8 @@ namespace Illuminate\Support\Facades { * @param string $root * @param string $path * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function assetFrom($root, $path, $secure = null) { @@ -20285,8 +20265,8 @@ namespace Illuminate\Support\Facades { * Get the default scheme for a raw URL. * * @param bool|null $secure - * @return string - * @static + * @return string + * @static */ public static function formatScheme($secure = null) { @@ -20301,9 +20281,9 @@ namespace Illuminate\Support\Facades { * @param mixed $parameters * @param \DateTimeInterface|\DateInterval|int|null $expiration * @param bool $absolute - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function signedRoute($name, $parameters = [], $expiration = null, $absolute = true) { @@ -20318,8 +20298,8 @@ namespace Illuminate\Support\Facades { * @param \DateTimeInterface|\DateInterval|int $expiration * @param array $parameters * @param bool $absolute - * @return string - * @static + * @return string + * @static */ public static function temporarySignedRoute($name, $expiration, $parameters = [], $absolute = true) { @@ -20333,8 +20313,8 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Http\Request $request * @param bool $absolute * @param array $ignoreQuery - * @return bool - * @static + * @return bool + * @static */ public static function hasValidSignature($request, $absolute = true, $ignoreQuery = []) { @@ -20347,8 +20327,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Http\Request $request * @param array $ignoreQuery - * @return bool - * @static + * @return bool + * @static */ public static function hasValidRelativeSignature($request, $ignoreQuery = []) { @@ -20362,8 +20342,8 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Http\Request $request * @param bool $absolute * @param array $ignoreQuery - * @return bool - * @static + * @return bool + * @static */ public static function hasCorrectSignature($request, $absolute = true, $ignoreQuery = []) { @@ -20375,8 +20355,8 @@ namespace Illuminate\Support\Facades { * Determine if the expires timestamp from the given request is not from the past. * * @param \Illuminate\Http\Request $request - * @return bool - * @static + * @return bool + * @static */ public static function signatureHasNotExpired($request) { @@ -20390,9 +20370,9 @@ namespace Illuminate\Support\Facades { * @param \BackedEnum|string $name * @param mixed $parameters * @param bool $absolute - * @return string + * @return string * @throws \Symfony\Component\Routing\Exception\RouteNotFoundException|\InvalidArgumentException - * @static + * @static */ public static function route($name, $parameters = [], $absolute = true) { @@ -20406,9 +20386,9 @@ namespace Illuminate\Support\Facades { * @param \Illuminate\Routing\Route $route * @param mixed $parameters * @param bool $absolute - * @return string + * @return string * @throws \Illuminate\Routing\Exceptions\UrlGenerationException - * @static + * @static */ public static function toRoute($route, $parameters, $absolute) { @@ -20422,9 +20402,9 @@ namespace Illuminate\Support\Facades { * @param string|array $action * @param mixed $parameters * @param bool $absolute - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function action($action, $parameters = [], $absolute = true) { @@ -20436,8 +20416,8 @@ namespace Illuminate\Support\Facades { * Format the array of URL parameters. * * @param mixed $parameters - * @return array - * @static + * @return array + * @static */ public static function formatParameters($parameters) { @@ -20450,8 +20430,8 @@ namespace Illuminate\Support\Facades { * * @param string $scheme * @param string|null $root - * @return string - * @static + * @return string + * @static */ public static function formatRoot($scheme, $root = null) { @@ -20465,8 +20445,8 @@ namespace Illuminate\Support\Facades { * @param string $root * @param string $path * @param \Illuminate\Routing\Route|null $route - * @return string - * @static + * @return string + * @static */ public static function format($root, $path, $route = null) { @@ -20478,8 +20458,8 @@ namespace Illuminate\Support\Facades { * Determine if the given path is a valid URL. * * @param string $path - * @return bool - * @static + * @return bool + * @static */ public static function isValidUrl($path) { @@ -20491,8 +20471,8 @@ namespace Illuminate\Support\Facades { * Set the default named parameters used by the URL generator. * * @param array $defaults - * @return void - * @static + * @return void + * @static */ public static function defaults($defaults) { @@ -20503,8 +20483,8 @@ namespace Illuminate\Support\Facades { /** * Get the default named parameters used by the URL generator. * - * @return array - * @static + * @return array + * @static */ public static function getDefaultParameters() { @@ -20516,8 +20496,8 @@ namespace Illuminate\Support\Facades { * Force the scheme for URLs. * * @param string|null $scheme - * @return void - * @static + * @return void + * @static */ public static function forceScheme($scheme) { @@ -20529,8 +20509,8 @@ namespace Illuminate\Support\Facades { * Force the use of the HTTPS scheme for all generated URLs. * * @param bool $force - * @return void - * @static + * @return void + * @static */ public static function forceHttps($force = true) { @@ -20542,8 +20522,8 @@ namespace Illuminate\Support\Facades { * Set the URL origin for all generated URLs. * * @param string|null $root - * @return void - * @static + * @return void + * @static */ public static function useOrigin($root) { @@ -20555,9 +20535,9 @@ namespace Illuminate\Support\Facades { * Set the forced root URL. * * @param string|null $root - * @return void + * @return void * @deprecated Use useOrigin - * @static + * @static */ public static function forceRootUrl($root) { @@ -20569,8 +20549,8 @@ namespace Illuminate\Support\Facades { * Set the URL origin for all generated asset URLs. * * @param string|null $root - * @return void - * @static + * @return void + * @static */ public static function useAssetOrigin($root) { @@ -20582,8 +20562,8 @@ namespace Illuminate\Support\Facades { * Set a callback to be used to format the host of generated URLs. * * @param \Closure $callback - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function formatHostUsing($callback) { @@ -20595,8 +20575,8 @@ namespace Illuminate\Support\Facades { * Set a callback to be used to format the path of generated URLs. * * @param \Closure $callback - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function formatPathUsing($callback) { @@ -20607,8 +20587,8 @@ namespace Illuminate\Support\Facades { /** * Get the path formatter being used by the URL generator. * - * @return \Closure - * @static + * @return \Closure + * @static */ public static function pathFormatter() { @@ -20619,8 +20599,8 @@ namespace Illuminate\Support\Facades { /** * Get the request instance. * - * @return \Illuminate\Http\Request - * @static + * @return \Illuminate\Http\Request + * @static */ public static function getRequest() { @@ -20632,8 +20612,8 @@ namespace Illuminate\Support\Facades { * Set the current request instance. * * @param \Illuminate\Http\Request $request - * @return void - * @static + * @return void + * @static */ public static function setRequest($request) { @@ -20645,8 +20625,8 @@ namespace Illuminate\Support\Facades { * Set the route collection. * * @param \Illuminate\Routing\RouteCollectionInterface $routes - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setRoutes($routes) { @@ -20658,8 +20638,8 @@ namespace Illuminate\Support\Facades { * Set the session resolver for the generator. * * @param callable $sessionResolver - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setSessionResolver($sessionResolver) { @@ -20671,8 +20651,8 @@ namespace Illuminate\Support\Facades { * Set the encryption key resolver. * * @param callable $keyResolver - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setKeyResolver($keyResolver) { @@ -20684,8 +20664,8 @@ namespace Illuminate\Support\Facades { * Clone a new instance of the URL generator with a different encryption key resolver. * * @param callable $keyResolver - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function withKeyResolver($keyResolver) { @@ -20697,8 +20677,8 @@ namespace Illuminate\Support\Facades { * Set the callback that should be used to attempt to resolve missing named routes. * * @param callable $missingNamedRouteResolver - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function resolveMissingNamedRoutesUsing($missingNamedRouteResolver) { @@ -20709,8 +20689,8 @@ namespace Illuminate\Support\Facades { /** * Get the root controller namespace. * - * @return string - * @static + * @return string + * @static */ public static function getRootControllerNamespace() { @@ -20722,8 +20702,8 @@ namespace Illuminate\Support\Facades { * Set the root controller namespace. * * @param string $rootNamespace - * @return \Illuminate\Routing\UrlGenerator - * @static + * @return \Illuminate\Routing\UrlGenerator + * @static */ public static function setRootControllerNamespace($rootNamespace) { @@ -20737,8 +20717,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -20750,9 +20730,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -20763,8 +20743,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -20774,8 +20754,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -20784,8 +20764,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Validation\Factory */ class Validator { @@ -20796,8 +20774,8 @@ namespace Illuminate\Support\Facades { * @param array $rules * @param array $messages * @param array $attributes - * @return \Illuminate\Validation\Validator - * @static + * @return \Illuminate\Validation\Validator + * @static */ public static function make($data, $rules, $messages = [], $attributes = []) { @@ -20812,9 +20790,9 @@ namespace Illuminate\Support\Facades { * @param array $rules * @param array $messages * @param array $attributes - * @return array + * @return array * @throws \Illuminate\Validation\ValidationException - * @static + * @static */ public static function validate($data, $rules, $messages = [], $attributes = []) { @@ -20828,8 +20806,8 @@ namespace Illuminate\Support\Facades { * @param string $rule * @param \Closure|string $extension * @param string|null $message - * @return void - * @static + * @return void + * @static */ public static function extend($rule, $extension, $message = null) { @@ -20843,8 +20821,8 @@ namespace Illuminate\Support\Facades { * @param string $rule * @param \Closure|string $extension * @param string|null $message - * @return void - * @static + * @return void + * @static */ public static function extendImplicit($rule, $extension, $message = null) { @@ -20858,8 +20836,8 @@ namespace Illuminate\Support\Facades { * @param string $rule * @param \Closure|string $extension * @param string|null $message - * @return void - * @static + * @return void + * @static */ public static function extendDependent($rule, $extension, $message = null) { @@ -20872,8 +20850,8 @@ namespace Illuminate\Support\Facades { * * @param string $rule * @param \Closure|string $replacer - * @return void - * @static + * @return void + * @static */ public static function replacer($rule, $replacer) { @@ -20884,8 +20862,8 @@ namespace Illuminate\Support\Facades { /** * Indicate that unvalidated array keys should be included in validated data when the parent array is validated. * - * @return void - * @static + * @return void + * @static */ public static function includeUnvalidatedArrayKeys() { @@ -20896,8 +20874,8 @@ namespace Illuminate\Support\Facades { /** * Indicate that unvalidated array keys should be excluded from the validated data, even if the parent array was validated. * - * @return void - * @static + * @return void + * @static */ public static function excludeUnvalidatedArrayKeys() { @@ -20909,8 +20887,8 @@ namespace Illuminate\Support\Facades { * Set the Validator instance resolver. * * @param \Closure $resolver - * @return void - * @static + * @return void + * @static */ public static function resolver($resolver) { @@ -20921,8 +20899,8 @@ namespace Illuminate\Support\Facades { /** * Get the Translator implementation. * - * @return \Illuminate\Contracts\Translation\Translator - * @static + * @return \Illuminate\Contracts\Translation\Translator + * @static */ public static function getTranslator() { @@ -20933,8 +20911,8 @@ namespace Illuminate\Support\Facades { /** * Get the Presence Verifier implementation. * - * @return \Illuminate\Validation\PresenceVerifierInterface - * @static + * @return \Illuminate\Validation\PresenceVerifierInterface + * @static */ public static function getPresenceVerifier() { @@ -20946,8 +20924,8 @@ namespace Illuminate\Support\Facades { * Set the Presence Verifier implementation. * * @param \Illuminate\Validation\PresenceVerifierInterface $presenceVerifier - * @return void - * @static + * @return void + * @static */ public static function setPresenceVerifier($presenceVerifier) { @@ -20958,8 +20936,8 @@ namespace Illuminate\Support\Facades { /** * Get the container instance used by the validation factory. * - * @return \Illuminate\Contracts\Container\Container|null - * @static + * @return \Illuminate\Contracts\Container\Container|null + * @static */ public static function getContainer() { @@ -20971,8 +20949,8 @@ namespace Illuminate\Support\Facades { * Set the container instance used by the validation factory. * * @param \Illuminate\Contracts\Container\Container $container - * @return \Illuminate\Validation\Factory - * @static + * @return \Illuminate\Validation\Factory + * @static */ public static function setContainer($container) { @@ -20982,8 +20960,6 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\View\Factory */ class View { @@ -20993,8 +20969,8 @@ namespace Illuminate\Support\Facades { * @param string $path * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return \Illuminate\Contracts\View\View - * @static + * @return \Illuminate\Contracts\View\View + * @static */ public static function file($path, $data = [], $mergeData = []) { @@ -21008,8 +20984,8 @@ namespace Illuminate\Support\Facades { * @param string $view * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return \Illuminate\Contracts\View\View - * @static + * @return \Illuminate\Contracts\View\View + * @static */ public static function make($view, $data = [], $mergeData = []) { @@ -21023,9 +20999,9 @@ namespace Illuminate\Support\Facades { * @param array $views * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return \Illuminate\Contracts\View\View + * @return \Illuminate\Contracts\View\View * @throws \InvalidArgumentException - * @static + * @static */ public static function first($views, $data = [], $mergeData = []) { @@ -21040,8 +21016,8 @@ namespace Illuminate\Support\Facades { * @param string $view * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return string - * @static + * @return string + * @static */ public static function renderWhen($condition, $view, $data = [], $mergeData = []) { @@ -21056,8 +21032,8 @@ namespace Illuminate\Support\Facades { * @param string $view * @param \Illuminate\Contracts\Support\Arrayable|array $data * @param array $mergeData - * @return string - * @static + * @return string + * @static */ public static function renderUnless($condition, $view, $data = [], $mergeData = []) { @@ -21072,8 +21048,8 @@ namespace Illuminate\Support\Facades { * @param array $data * @param string $iterator * @param string $empty - * @return string - * @static + * @return string + * @static */ public static function renderEach($view, $data, $iterator, $empty = 'raw|') { @@ -21085,8 +21061,8 @@ namespace Illuminate\Support\Facades { * Determine if a given view exists. * * @param string $view - * @return bool - * @static + * @return bool + * @static */ public static function exists($view) { @@ -21098,9 +21074,9 @@ namespace Illuminate\Support\Facades { * Get the appropriate view engine for the given path. * * @param string $path - * @return \Illuminate\Contracts\View\Engine + * @return \Illuminate\Contracts\View\Engine * @throws \InvalidArgumentException - * @static + * @static */ public static function getEngineFromPath($path) { @@ -21113,8 +21089,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $key * @param mixed|null $value - * @return mixed - * @static + * @return mixed + * @static */ public static function share($key, $value = null) { @@ -21125,8 +21101,8 @@ namespace Illuminate\Support\Facades { /** * Increment the rendering counter. * - * @return void - * @static + * @return void + * @static */ public static function incrementRender() { @@ -21137,8 +21113,8 @@ namespace Illuminate\Support\Facades { /** * Decrement the rendering counter. * - * @return void - * @static + * @return void + * @static */ public static function decrementRender() { @@ -21149,8 +21125,8 @@ namespace Illuminate\Support\Facades { /** * Check if there are no active render operations. * - * @return bool - * @static + * @return bool + * @static */ public static function doneRendering() { @@ -21162,8 +21138,8 @@ namespace Illuminate\Support\Facades { * Determine if the given once token has been rendered. * * @param string $id - * @return bool - * @static + * @return bool + * @static */ public static function hasRenderedOnce($id) { @@ -21175,8 +21151,8 @@ namespace Illuminate\Support\Facades { * Mark the given once token as having been rendered. * * @param string $id - * @return void - * @static + * @return void + * @static */ public static function markAsRenderedOnce($id) { @@ -21188,8 +21164,8 @@ namespace Illuminate\Support\Facades { * Add a location to the array of view locations. * * @param string $location - * @return void - * @static + * @return void + * @static */ public static function addLocation($location) { @@ -21201,8 +21177,8 @@ namespace Illuminate\Support\Facades { * Prepend a location to the array of view locations. * * @param string $location - * @return void - * @static + * @return void + * @static */ public static function prependLocation($location) { @@ -21215,8 +21191,8 @@ namespace Illuminate\Support\Facades { * * @param string $namespace * @param string|array $hints - * @return \Illuminate\View\Factory - * @static + * @return \Illuminate\View\Factory + * @static */ public static function addNamespace($namespace, $hints) { @@ -21229,8 +21205,8 @@ namespace Illuminate\Support\Facades { * * @param string $namespace * @param string|array $hints - * @return \Illuminate\View\Factory - * @static + * @return \Illuminate\View\Factory + * @static */ public static function prependNamespace($namespace, $hints) { @@ -21243,8 +21219,8 @@ namespace Illuminate\Support\Facades { * * @param string $namespace * @param string|array $hints - * @return \Illuminate\View\Factory - * @static + * @return \Illuminate\View\Factory + * @static */ public static function replaceNamespace($namespace, $hints) { @@ -21258,8 +21234,8 @@ namespace Illuminate\Support\Facades { * @param string $extension * @param string $engine * @param \Closure|null $resolver - * @return void - * @static + * @return void + * @static */ public static function addExtension($extension, $engine, $resolver = null) { @@ -21270,8 +21246,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the factory state like sections and stacks. * - * @return void - * @static + * @return void + * @static */ public static function flushState() { @@ -21282,8 +21258,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the section contents if done rendering. * - * @return void - * @static + * @return void + * @static */ public static function flushStateIfDoneRendering() { @@ -21294,8 +21270,8 @@ namespace Illuminate\Support\Facades { /** * Get the extension to engine bindings. * - * @return array - * @static + * @return array + * @static */ public static function getExtensions() { @@ -21306,8 +21282,8 @@ namespace Illuminate\Support\Facades { /** * Get the engine resolver instance. * - * @return \Illuminate\View\Engines\EngineResolver - * @static + * @return \Illuminate\View\Engines\EngineResolver + * @static */ public static function getEngineResolver() { @@ -21318,8 +21294,8 @@ namespace Illuminate\Support\Facades { /** * Get the view finder instance. * - * @return \Illuminate\View\ViewFinderInterface - * @static + * @return \Illuminate\View\ViewFinderInterface + * @static */ public static function getFinder() { @@ -21331,8 +21307,8 @@ namespace Illuminate\Support\Facades { * Set the view finder instance. * * @param \Illuminate\View\ViewFinderInterface $finder - * @return void - * @static + * @return void + * @static */ public static function setFinder($finder) { @@ -21343,8 +21319,8 @@ namespace Illuminate\Support\Facades { /** * Flush the cache of views located by the finder. * - * @return void - * @static + * @return void + * @static */ public static function flushFinderCache() { @@ -21355,8 +21331,8 @@ namespace Illuminate\Support\Facades { /** * Get the event dispatcher instance. * - * @return \Illuminate\Contracts\Events\Dispatcher - * @static + * @return \Illuminate\Contracts\Events\Dispatcher + * @static */ public static function getDispatcher() { @@ -21368,8 +21344,8 @@ namespace Illuminate\Support\Facades { * Set the event dispatcher instance. * * @param \Illuminate\Contracts\Events\Dispatcher $events - * @return void - * @static + * @return void + * @static */ public static function setDispatcher($events) { @@ -21380,8 +21356,8 @@ namespace Illuminate\Support\Facades { /** * Get the IoC container instance. * - * @return \Illuminate\Contracts\Container\Container - * @static + * @return \Illuminate\Contracts\Container\Container + * @static */ public static function getContainer() { @@ -21393,8 +21369,8 @@ namespace Illuminate\Support\Facades { * Set the IoC container instance. * * @param \Illuminate\Contracts\Container\Container $container - * @return void - * @static + * @return void + * @static */ public static function setContainer($container) { @@ -21407,8 +21383,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed - * @static + * @return mixed + * @static */ public static function shared($key, $default = null) { @@ -21419,8 +21395,8 @@ namespace Illuminate\Support\Facades { /** * Get all of the shared data for the environment. * - * @return array - * @static + * @return array + * @static */ public static function getShared() { @@ -21434,8 +21410,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -21447,9 +21423,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -21460,8 +21436,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -21471,8 +21447,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -21484,8 +21460,8 @@ namespace Illuminate\Support\Facades { * * @param \Illuminate\Contracts\View\View|\Illuminate\Contracts\Support\Htmlable|\Closure|string $view * @param array $data - * @return void - * @static + * @return void + * @static */ public static function startComponent($view, $data = []) { @@ -21498,8 +21474,8 @@ namespace Illuminate\Support\Facades { * * @param array $names * @param array $data - * @return void - * @static + * @return void + * @static */ public static function startComponentFirst($names, $data = []) { @@ -21510,8 +21486,8 @@ namespace Illuminate\Support\Facades { /** * Render the current component. * - * @return string - * @static + * @return string + * @static */ public static function renderComponent() { @@ -21524,8 +21500,8 @@ namespace Illuminate\Support\Facades { * * @param string $key * @param mixed $default - * @return mixed|null - * @static + * @return mixed|null + * @static */ public static function getConsumableComponentData($key, $default = null) { @@ -21539,8 +21515,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param string|null $content * @param array $attributes - * @return void - * @static + * @return void + * @static */ public static function slot($name, $content = null, $attributes = []) { @@ -21551,8 +21527,8 @@ namespace Illuminate\Support\Facades { /** * Save the slot content for rendering. * - * @return void - * @static + * @return void + * @static */ public static function endSlot() { @@ -21565,8 +21541,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $views * @param \Closure|string $callback - * @return array - * @static + * @return array + * @static */ public static function creator($views, $callback) { @@ -21578,8 +21554,8 @@ namespace Illuminate\Support\Facades { * Register multiple view composers via an array. * * @param array $composers - * @return array - * @static + * @return array + * @static */ public static function composers($composers) { @@ -21592,8 +21568,8 @@ namespace Illuminate\Support\Facades { * * @param array|string $views * @param \Closure|string $callback - * @return array - * @static + * @return array + * @static */ public static function composer($views, $callback) { @@ -21605,8 +21581,8 @@ namespace Illuminate\Support\Facades { * Call the composer for a given view. * * @param \Illuminate\Contracts\View\View $view - * @return void - * @static + * @return void + * @static */ public static function callComposer($view) { @@ -21618,8 +21594,8 @@ namespace Illuminate\Support\Facades { * Call the creator for a given view. * * @param \Illuminate\Contracts\View\View $view - * @return void - * @static + * @return void + * @static */ public static function callCreator($view) { @@ -21631,8 +21607,8 @@ namespace Illuminate\Support\Facades { * Start injecting content into a fragment. * * @param string $fragment - * @return void - * @static + * @return void + * @static */ public static function startFragment($fragment) { @@ -21643,9 +21619,9 @@ namespace Illuminate\Support\Facades { /** * Stop injecting content into a fragment. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopFragment() { @@ -21658,8 +21634,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param string|null $default - * @return mixed - * @static + * @return mixed + * @static */ public static function getFragment($name, $default = null) { @@ -21670,8 +21646,8 @@ namespace Illuminate\Support\Facades { /** * Get the entire array of rendered fragments. * - * @return array - * @static + * @return array + * @static */ public static function getFragments() { @@ -21682,8 +21658,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the fragments. * - * @return void - * @static + * @return void + * @static */ public static function flushFragments() { @@ -21696,8 +21672,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string|null $content - * @return void - * @static + * @return void + * @static */ public static function startSection($section, $content = null) { @@ -21710,8 +21686,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function inject($section, $content) { @@ -21722,8 +21698,8 @@ namespace Illuminate\Support\Facades { /** * Stop injecting content into a section and return its contents. * - * @return string - * @static + * @return string + * @static */ public static function yieldSection() { @@ -21735,9 +21711,9 @@ namespace Illuminate\Support\Facades { * Stop injecting content into a section. * * @param bool $overwrite - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopSection($overwrite = false) { @@ -21748,9 +21724,9 @@ namespace Illuminate\Support\Facades { /** * Stop injecting content into a section and append it. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function appendSection() { @@ -21763,8 +21739,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $default - * @return string - * @static + * @return string + * @static */ public static function yieldContent($section, $default = '') { @@ -21776,8 +21752,8 @@ namespace Illuminate\Support\Facades { * Get the parent placeholder for the current request. * * @param string $section - * @return string - * @static + * @return string + * @static */ public static function parentPlaceholder($section = '') { @@ -21788,8 +21764,8 @@ namespace Illuminate\Support\Facades { * Check if section exists. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasSection($name) { @@ -21801,8 +21777,8 @@ namespace Illuminate\Support\Facades { * Check if section does not exist. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function sectionMissing($name) { @@ -21815,8 +21791,8 @@ namespace Illuminate\Support\Facades { * * @param string $name * @param string|null $default - * @return mixed - * @static + * @return mixed + * @static */ public static function getSection($name, $default = null) { @@ -21827,8 +21803,8 @@ namespace Illuminate\Support\Facades { /** * Get the entire array of sections. * - * @return array - * @static + * @return array + * @static */ public static function getSections() { @@ -21839,8 +21815,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the sections. * - * @return void - * @static + * @return void + * @static */ public static function flushSections() { @@ -21852,8 +21828,8 @@ namespace Illuminate\Support\Facades { * Add new loop to the stack. * * @param \Countable|array $data - * @return void - * @static + * @return void + * @static */ public static function addLoop($data) { @@ -21864,8 +21840,8 @@ namespace Illuminate\Support\Facades { /** * Increment the top loop's indices. * - * @return void - * @static + * @return void + * @static */ public static function incrementLoopIndices() { @@ -21876,8 +21852,8 @@ namespace Illuminate\Support\Facades { /** * Pop a loop from the top of the loop stack. * - * @return void - * @static + * @return void + * @static */ public static function popLoop() { @@ -21888,8 +21864,8 @@ namespace Illuminate\Support\Facades { /** * Get an instance of the last loop in the stack. * - * @return \stdClass|null - * @static + * @return \stdClass|null + * @static */ public static function getLastLoop() { @@ -21900,8 +21876,8 @@ namespace Illuminate\Support\Facades { /** * Get the entire loop stack. * - * @return array - * @static + * @return array + * @static */ public static function getLoopStack() { @@ -21914,8 +21890,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function startPush($section, $content = '') { @@ -21926,9 +21902,9 @@ namespace Illuminate\Support\Facades { /** * Stop injecting content into a push section. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopPush() { @@ -21941,8 +21917,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $content - * @return void - * @static + * @return void + * @static */ public static function startPrepend($section, $content = '') { @@ -21953,9 +21929,9 @@ namespace Illuminate\Support\Facades { /** * Stop prepending content into a push section. * - * @return string + * @return string * @throws \InvalidArgumentException - * @static + * @static */ public static function stopPrepend() { @@ -21968,8 +21944,8 @@ namespace Illuminate\Support\Facades { * * @param string $section * @param string $default - * @return string - * @static + * @return string + * @static */ public static function yieldPushContent($section, $default = '') { @@ -21980,8 +21956,8 @@ namespace Illuminate\Support\Facades { /** * Flush all of the stacks. * - * @return void - * @static + * @return void + * @static */ public static function flushStacks() { @@ -21993,8 +21969,8 @@ namespace Illuminate\Support\Facades { * Start a translation block. * * @param array $replacements - * @return void - * @static + * @return void + * @static */ public static function startTranslation($replacements = []) { @@ -22005,8 +21981,8 @@ namespace Illuminate\Support\Facades { /** * Render the current translation. * - * @return string - * @static + * @return string + * @static */ public static function renderTranslation() { @@ -22016,16 +21992,14 @@ namespace Illuminate\Support\Facades { } /** - * - * * @see \Illuminate\Foundation\Vite */ class Vite { /** * Get the preloaded assets. * - * @return array - * @static + * @return array + * @static */ public static function preloadedAssets() { @@ -22036,8 +22010,8 @@ namespace Illuminate\Support\Facades { /** * Get the Content Security Policy nonce applied to all generated tags. * - * @return string|null - * @static + * @return string|null + * @static */ public static function cspNonce() { @@ -22049,8 +22023,8 @@ namespace Illuminate\Support\Facades { * Generate or set a Content Security Policy nonce to apply to all generated tags. * * @param string|null $nonce - * @return string - * @static + * @return string + * @static */ public static function useCspNonce($nonce = null) { @@ -22062,8 +22036,8 @@ namespace Illuminate\Support\Facades { * Use the given key to detect integrity hashes in the manifest. * * @param string|false $key - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useIntegrityKey($key) { @@ -22075,8 +22049,8 @@ namespace Illuminate\Support\Facades { * Set the Vite entry points. * * @param array $entryPoints - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function withEntryPoints($entryPoints) { @@ -22088,8 +22062,8 @@ namespace Illuminate\Support\Facades { * Merge additional Vite entry points with the current set. * * @param array $entryPoints - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function mergeEntryPoints($entryPoints) { @@ -22101,8 +22075,8 @@ namespace Illuminate\Support\Facades { * Set the filename for the manifest file. * * @param string $filename - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useManifestFilename($filename) { @@ -22114,8 +22088,8 @@ namespace Illuminate\Support\Facades { * Resolve asset paths using the provided resolver. * * @param callable|null $resolver - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function createAssetPathsUsing($resolver) { @@ -22126,8 +22100,8 @@ namespace Illuminate\Support\Facades { /** * Get the Vite "hot" file path. * - * @return string - * @static + * @return string + * @static */ public static function hotFile() { @@ -22139,8 +22113,8 @@ namespace Illuminate\Support\Facades { * Set the Vite "hot" file path. * * @param string $path - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useHotFile($path) { @@ -22152,8 +22126,8 @@ namespace Illuminate\Support\Facades { * Set the Vite build directory. * * @param string $path - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useBuildDirectory($path) { @@ -22165,8 +22139,8 @@ namespace Illuminate\Support\Facades { * Use the given callback to resolve attributes for script tags. * * @param (callable(string, string, ?array, ?array): array)|array $attributes - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useScriptTagAttributes($attributes) { @@ -22178,8 +22152,8 @@ namespace Illuminate\Support\Facades { * Use the given callback to resolve attributes for style tags. * * @param (callable(string, string, ?array, ?array): array)|array $attributes - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useStyleTagAttributes($attributes) { @@ -22191,8 +22165,8 @@ namespace Illuminate\Support\Facades { * Use the given callback to resolve attributes for preload tags. * * @param (callable(string, string, ?array, ?array): (array|false))|array|false $attributes - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function usePreloadTagAttributes($attributes) { @@ -22205,8 +22179,8 @@ namespace Illuminate\Support\Facades { * * @param int|null $concurrency * @param string $event - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function prefetch($concurrency = null, $event = 'load') { @@ -22217,8 +22191,8 @@ namespace Illuminate\Support\Facades { /** * Use the "waterfall" prefetching strategy. * - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useWaterfallPrefetching($concurrency = null) { @@ -22229,8 +22203,8 @@ namespace Illuminate\Support\Facades { /** * Use the "aggressive" prefetching strategy. * - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function useAggressivePrefetching() { @@ -22243,8 +22217,8 @@ namespace Illuminate\Support\Facades { * * @param 'waterfall'|'aggressive'|null $strategy * @param array $config - * @return \Illuminate\Foundation\Vite - * @static + * @return \Illuminate\Foundation\Vite + * @static */ public static function usePrefetchStrategy($strategy, $config = []) { @@ -22255,8 +22229,8 @@ namespace Illuminate\Support\Facades { /** * Generate React refresh runtime script. * - * @return \Illuminate\Support\HtmlString|void - * @static + * @return \Illuminate\Support\HtmlString|void + * @static */ public static function reactRefresh() { @@ -22269,8 +22243,8 @@ namespace Illuminate\Support\Facades { * * @param string $asset * @param string|null $buildDirectory - * @return string - * @static + * @return string + * @static */ public static function asset($asset, $buildDirectory = null) { @@ -22283,9 +22257,9 @@ namespace Illuminate\Support\Facades { * * @param string $asset * @param string|null $buildDirectory - * @return string + * @return string * @throws \Illuminate\Foundation\ViteException - * @static + * @static */ public static function content($asset, $buildDirectory = null) { @@ -22297,8 +22271,8 @@ namespace Illuminate\Support\Facades { * Get a unique hash representing the current manifest, or null if there is no manifest. * * @param string|null $buildDirectory - * @return string|null - * @static + * @return string|null + * @static */ public static function manifestHash($buildDirectory = null) { @@ -22309,8 +22283,8 @@ namespace Illuminate\Support\Facades { /** * Determine if the HMR server is running. * - * @return bool - * @static + * @return bool + * @static */ public static function isRunningHot() { @@ -22321,8 +22295,8 @@ namespace Illuminate\Support\Facades { /** * Get the Vite tag content as a string of HTML. * - * @return string - * @static + * @return string + * @static */ public static function toHtml() { @@ -22336,8 +22310,8 @@ namespace Illuminate\Support\Facades { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -22349,9 +22323,9 @@ namespace Illuminate\Support\Facades { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -22362,8 +22336,8 @@ namespace Illuminate\Support\Facades { * Checks if macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -22373,8 +22347,8 @@ namespace Illuminate\Support\Facades { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -22386,15 +22360,13 @@ namespace Illuminate\Support\Facades { namespace Laravel\Octane\Facades { /** - * - * * @see \Laravel\Octane\Octane */ class Octane { /** * Get a Swoole table instance. * - * @static + * @static */ public static function table($table) { @@ -22405,7 +22377,7 @@ namespace Laravel\Octane\Facades { /** * Format an exception to a string that should be returned to the client. * - * @static + * @static */ public static function formatExceptionForClient($e, $debug = false) { @@ -22415,7 +22387,7 @@ namespace Laravel\Octane\Facades { /** * Write an error message to STDERR or to the SAPI logger if not in CLI mode. * - * @static + * @static */ public static function writeError($message) { @@ -22427,10 +22399,10 @@ namespace Laravel\Octane\Facades { * * Results will be keyed by their given keys - if a task did not finish, the tasks value will be "false". * - * @return array + * @return array * @throws \Laravel\Octane\Exceptions\TaskException * @throws \Laravel\Octane\Exceptions\TaskTimeoutException - * @static + * @static */ public static function concurrently($tasks, $waitMilliseconds = 3000) { @@ -22441,8 +22413,8 @@ namespace Laravel\Octane\Facades { /** * Get the task dispatcher. * - * @return \Laravel\Octane\Contracts\DispatchesTasks - * @static + * @return \Laravel\Octane\Contracts\DispatchesTasks + * @static */ public static function tasks() { @@ -22453,7 +22425,7 @@ namespace Laravel\Octane\Facades { /** * Get the listeners that will prepare the Laravel application for a new request. * - * @static + * @static */ public static function prepareApplicationForNextRequest() { @@ -22463,7 +22435,7 @@ namespace Laravel\Octane\Facades { /** * Get the listeners that will prepare the Laravel application for a new operation. * - * @static + * @static */ public static function prepareApplicationForNextOperation() { @@ -22473,7 +22445,7 @@ namespace Laravel\Octane\Facades { /** * Get the container bindings / services that should be pre-resolved by default. * - * @static + * @static */ public static function defaultServicesToWarm() { @@ -22483,7 +22455,7 @@ namespace Laravel\Octane\Facades { /** * Register a Octane route. * - * @static + * @static */ public static function route($method, $uri, $callback) { @@ -22494,7 +22466,7 @@ namespace Laravel\Octane\Facades { /** * Determine if a route exists for the given method and URI. * - * @static + * @static */ public static function hasRouteFor($method, $uri) { @@ -22505,7 +22477,7 @@ namespace Laravel\Octane\Facades { /** * Invoke the route for the given method and URI. * - * @static + * @static */ public static function invokeRoute($request, $method, $uri) { @@ -22516,7 +22488,7 @@ namespace Laravel\Octane\Facades { /** * Get the registered Octane routes. * - * @static + * @static */ public static function getRoutes() { @@ -22527,8 +22499,8 @@ namespace Laravel\Octane\Facades { /** * Register a callback to be called every N seconds. * - * @return \Laravel\Octane\Swoole\InvokeTickCallable - * @static + * @return \Laravel\Octane\Swoole\InvokeTickCallable + * @static */ public static function tick($key, $callback, $seconds = 1, $immediate = true) { @@ -22541,15 +22513,11 @@ namespace Laravel\Octane\Facades { namespace Spatie\LaravelIgnition\Facades { /** - * - * * @see \Spatie\FlareClient\Flare */ class Flare { /** - * - * - * @static + * @static */ public static function make($apiKey = null, $contextDetector = null) { @@ -22557,9 +22525,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setApiToken($apiToken) { @@ -22568,9 +22534,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function apiTokenSet() { @@ -22579,9 +22543,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setBaseUrl($baseUrl) { @@ -22590,9 +22552,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setStage($stage) { @@ -22601,9 +22561,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function sendReportsImmediately() { @@ -22612,9 +22570,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function determineVersionUsing($determineVersionCallable) { @@ -22623,9 +22579,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reportErrorLevels($reportErrorLevels) { @@ -22634,9 +22588,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function filterExceptionsUsing($filterExceptionsCallable) { @@ -22645,9 +22597,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function filterReportsUsing($filterReportsCallable) { @@ -22656,10 +22606,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param array|ArgumentReducer>|\Spatie\Backtrace\Arguments\ArgumentReducers|null $argumentReducers - * @static + * @static */ public static function argumentReducers($argumentReducers) { @@ -22668,9 +22616,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function withStackFrameArguments($withStackFrameArguments = true, $forcePHPIniSetting = false) { @@ -22679,10 +22625,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param class-string $exceptionClass - * @static + * @static */ public static function overrideGrouping($exceptionClass, $type = 'exception_message_and_class') { @@ -22691,9 +22635,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function version() { @@ -22702,10 +22644,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @return array> - * @static + * @return array> + * @static */ public static function getMiddleware() { @@ -22714,9 +22654,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setContextProviderDetector($contextDetector) { @@ -22725,9 +22663,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function setContainer($container) { @@ -22736,9 +22672,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function registerFlareHandlers() { @@ -22747,9 +22681,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function registerExceptionHandler() { @@ -22758,9 +22690,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function registerErrorHandler($errorLevels = null) { @@ -22769,11 +22699,9 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|array|class-string|callable $middleware - * @return \Spatie\FlareClient\Flare - * @static + * @return \Spatie\FlareClient\Flare + * @static */ public static function registerMiddleware($middleware) { @@ -22782,10 +22710,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @return array> - * @static + * @return array> + * @static */ public static function getMiddlewares() { @@ -22794,13 +22720,11 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param string $name * @param string $messageLevel * @param array $metaData - * @return \Spatie\FlareClient\Flare - * @static + * @return \Spatie\FlareClient\Flare + * @static */ public static function glow($name, $messageLevel = 'info', $metaData = []) { @@ -22809,9 +22733,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function handleException($throwable) { @@ -22820,10 +22742,8 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @return mixed - * @static + * @return mixed + * @static */ public static function handleError($code, $message, $file = '', $line = 0) { @@ -22832,9 +22752,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function applicationPath($applicationPath) { @@ -22843,9 +22761,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function report($throwable, $callback = null, $report = null, $handled = null) { @@ -22854,9 +22770,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reportHandled($throwable) { @@ -22865,9 +22779,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reportMessage($message, $logLevel, $callback = null) { @@ -22876,9 +22788,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function sendTestReport($throwable) { @@ -22887,9 +22797,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function reset() { @@ -22898,9 +22806,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function anonymizeIp() { @@ -22909,11 +22815,9 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param array $fieldNames - * @return \Spatie\FlareClient\Flare - * @static + * @return \Spatie\FlareClient\Flare + * @static */ public static function censorRequestBodyFields($fieldNames) { @@ -22922,9 +22826,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function createReport($throwable) { @@ -22933,9 +22835,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function createReportFromMessage($message, $logLevel) { @@ -22944,9 +22844,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function stage($stage) { @@ -22955,9 +22853,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function messageLevel($messageLevel) { @@ -22966,12 +22862,10 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param string $groupName * @param mixed $default - * @return array - * @static + * @return array + * @static */ public static function getGroup($groupName = 'context', $default = []) { @@ -22980,9 +22874,7 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * - * @static + * @static */ public static function context($key, $value) { @@ -22991,12 +22883,10 @@ namespace Spatie\LaravelIgnition\Facades { } /** - * - * * @param string $groupName * @param array $properties - * @return \Spatie\FlareClient\Flare - * @static + * @return \Spatie\FlareClient\Flare + * @static */ public static function group($groupName, $properties) { @@ -23009,17 +22899,13 @@ namespace Spatie\LaravelIgnition\Facades { namespace Illuminate\Http { /** - * - * */ - class Request { + class Request extends \Symfony\Component\HttpFoundation\Request { /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param array $rules * @param mixed $params - * @static + * @static */ public static function validate($rules, ...$params) { @@ -23027,13 +22913,11 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestValidation() * @param string $errorBag * @param array $rules * @param mixed $params - * @static + * @static */ public static function validateWithBag($errorBag, $rules, ...$params) { @@ -23041,11 +22925,9 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $absolute - * @static + * @static */ public static function hasValidSignature($absolute = true) { @@ -23053,10 +22935,8 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() - * @static + * @static */ public static function hasValidRelativeSignature() { @@ -23064,12 +22944,10 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $ignoreQuery * @param mixed $absolute - * @static + * @static */ public static function hasValidSignatureWhileIgnoring($ignoreQuery = [], $absolute = true) { @@ -23077,11 +22955,9 @@ namespace Illuminate\Http { } /** - * - * * @see \Illuminate\Foundation\Providers\FoundationServiceProvider::registerRequestSignatureValidation() * @param mixed $ignoreQuery - * @static + * @static */ public static function hasValidRelativeSignatureWhileIgnoring($ignoreQuery = []) { @@ -23110,8 +22986,6 @@ namespace { class DB extends \Illuminate\Support\Facades\DB {} /** - * - * * @template TCollection of static * @template TModel of static * @template TValue of static @@ -23121,8 +22995,8 @@ namespace { * Create and return an un-saved model instance. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function make($attributes = []) { @@ -23135,8 +23009,8 @@ namespace { * * @param string $identifier * @param \Illuminate\Database\Eloquent\Scope|\Closure $scope - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withGlobalScope($identifier, $scope) { @@ -23148,8 +23022,8 @@ namespace { * Remove a registered global scope. * * @param \Illuminate\Database\Eloquent\Scope|string $scope - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withoutGlobalScope($scope) { @@ -23161,8 +23035,8 @@ namespace { * Remove all or passed registered global scopes. * * @param array|null $scopes - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withoutGlobalScopes($scopes = null) { @@ -23173,8 +23047,8 @@ namespace { /** * Get an array of global scopes that were removed from the query. * - * @return array - * @static + * @return array + * @static */ public static function removedScopes() { @@ -23186,8 +23060,8 @@ namespace { * Add a where clause on the primary key to the query. * * @param mixed $id - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereKey($id) { @@ -23199,8 +23073,8 @@ namespace { * Add a where clause on the primary key to the query. * * @param mixed $id - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereKeyNot($id) { @@ -23215,8 +23089,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function where($column, $operator = null, $value = null, $boolean = 'and') { @@ -23231,8 +23105,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return TModel|null - * @static + * @return TModel|null + * @static */ public static function firstWhere($column, $operator = null, $value = null, $boolean = 'and') { @@ -23246,8 +23120,8 @@ namespace { * @param (\Closure(static): mixed)|array|string|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhere($column, $operator = null, $value = null) { @@ -23262,8 +23136,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNot($column, $operator = null, $value = null, $boolean = 'and') { @@ -23277,8 +23151,8 @@ namespace { * @param (\Closure(static): mixed)|array|string|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNot($column, $operator = null, $value = null) { @@ -23290,8 +23164,8 @@ namespace { * Add an "order by" clause for a timestamp to the query. * * @param string|\Illuminate\Contracts\Database\Query\Expression $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function latest($column = null) { @@ -23303,8 +23177,8 @@ namespace { * Add an "order by" clause for a timestamp to the query. * * @param string|\Illuminate\Contracts\Database\Query\Expression $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function oldest($column = null) { @@ -23316,8 +23190,8 @@ namespace { * Create a collection of models from plain arrays. * * @param array $items - * @return \Illuminate\Database\Eloquent\Collection - * @static + * @return \Illuminate\Database\Eloquent\Collection + * @static */ public static function hydrate($items) { @@ -23330,8 +23204,8 @@ namespace { * * @param string $query * @param array $bindings - * @return \Illuminate\Database\Eloquent\Collection - * @static + * @return \Illuminate\Database\Eloquent\Collection + * @static */ public static function fromQuery($query, $bindings = []) { @@ -23345,7 +23219,7 @@ namespace { * @param mixed $id * @param array|string $columns * @return ($id is (\Illuminate\Contracts\Support\Arrayable|array) ? \Illuminate\Database\Eloquent\Collection : TModel|null) - * @static + * @static */ public static function find($id, $columns = []) { @@ -23358,10 +23232,10 @@ namespace { * * @param mixed $id * @param array|string $columns - * @return TModel + * @return TModel * @throws \Illuminate\Database\Eloquent\ModelNotFoundException * @throws \Illuminate\Database\MultipleRecordsFoundException - * @static + * @static */ public static function findSole($id, $columns = []) { @@ -23374,8 +23248,8 @@ namespace { * * @param \Illuminate\Contracts\Support\Arrayable|array $ids * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Collection - * @static + * @return \Illuminate\Database\Eloquent\Collection + * @static */ public static function findMany($ids, $columns = []) { @@ -23390,7 +23264,7 @@ namespace { * @param array|string $columns * @return ($id is (\Illuminate\Contracts\Support\Arrayable|array) ? \Illuminate\Database\Eloquent\Collection : TModel) * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function findOrFail($id, $columns = []) { @@ -23404,7 +23278,7 @@ namespace { * @param mixed $id * @param array|string $columns * @return ($id is (\Illuminate\Contracts\Support\Arrayable|array) ? \Illuminate\Database\Eloquent\Collection : TModel) - * @static + * @static */ public static function findOrNew($id, $columns = []) { @@ -23423,7 +23297,7 @@ namespace { * ? \Illuminate\Database\Eloquent\Collection * : TModel|TValue * ) - * @static + * @static */ public static function findOr($id, $columns = [], $callback = null) { @@ -23436,8 +23310,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function firstOrNew($attributes = [], $values = []) { @@ -23450,8 +23324,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function firstOrCreate($attributes = [], $values = []) { @@ -23464,8 +23338,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function createOrFirst($attributes = [], $values = []) { @@ -23478,8 +23352,8 @@ namespace { * * @param array $attributes * @param array $values - * @return TModel - * @static + * @return TModel + * @static */ public static function updateOrCreate($attributes, $values = []) { @@ -23495,8 +23369,8 @@ namespace { * @param int|float $default * @param int|float $step * @param array $extra - * @return TModel - * @static + * @return TModel + * @static */ public static function incrementOrCreate($attributes, $column = 'count', $default = 1, $step = 1, $extra = []) { @@ -23508,9 +23382,9 @@ namespace { * Execute the query and get the first result or throw an exception. * * @param array|string $columns - * @return TModel + * @return TModel * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function firstOrFail($columns = []) { @@ -23524,8 +23398,8 @@ namespace { * @template TValue * @param (\Closure(): TValue)|list $columns * @param (\Closure(): TValue)|null $callback - * @return TModel|TValue - * @static + * @return TModel|TValue + * @static */ public static function firstOr($columns = [], $callback = null) { @@ -23537,10 +23411,10 @@ namespace { * Execute the query and get the first result if it's the sole matching record. * * @param array|string $columns - * @return TModel + * @return TModel * @throws \Illuminate\Database\Eloquent\ModelNotFoundException * @throws \Illuminate\Database\MultipleRecordsFoundException - * @static + * @static */ public static function sole($columns = []) { @@ -23552,8 +23426,8 @@ namespace { * Get a single column's value from the first result of a query. * * @param string|\Illuminate\Contracts\Database\Query\Expression $column - * @return mixed - * @static + * @return mixed + * @static */ public static function value($column) { @@ -23565,10 +23439,10 @@ namespace { * Get a single column's value from the first result of a query if it's the sole matching record. * * @param string|\Illuminate\Contracts\Database\Query\Expression $column - * @return mixed + * @return mixed * @throws \Illuminate\Database\Eloquent\ModelNotFoundException * @throws \Illuminate\Database\MultipleRecordsFoundException - * @static + * @static */ public static function soleValue($column) { @@ -23580,9 +23454,9 @@ namespace { * Get a single column's value from the first result of the query or throw an exception. * * @param string|\Illuminate\Contracts\Database\Query\Expression $column - * @return mixed + * @return mixed * @throws \Illuminate\Database\Eloquent\ModelNotFoundException - * @static + * @static */ public static function valueOrFail($column) { @@ -23594,8 +23468,8 @@ namespace { * Execute the query as a "select" statement. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Collection - * @static + * @return \Illuminate\Database\Eloquent\Collection + * @static */ public static function get($columns = []) { @@ -23607,8 +23481,8 @@ namespace { * Get the hydrated models without eager loading. * * @param array|string $columns - * @return array - * @static + * @return array + * @static */ public static function getModels($columns = []) { @@ -23620,8 +23494,8 @@ namespace { * Eager load the relationships for the models. * * @param array $models - * @return array - * @static + * @return array + * @static */ public static function eagerLoadRelations($models) { @@ -23633,8 +23507,8 @@ namespace { * Register a closure to be invoked after the query is executed. * * @param \Closure $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function afterQuery($callback) { @@ -23646,8 +23520,8 @@ namespace { * Invoke the "after query" modification callbacks. * * @param mixed $result - * @return mixed - * @static + * @return mixed + * @static */ public static function applyAfterQueryCallbacks($result) { @@ -23658,8 +23532,8 @@ namespace { /** * Get a lazy collection for the given query. * - * @return \Illuminate\Support\LazyCollection - * @static + * @return \Illuminate\Support\LazyCollection + * @static */ public static function cursor() { @@ -23672,8 +23546,8 @@ namespace { * * @param string|\Illuminate\Contracts\Database\Query\Expression $column * @param string|null $key - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function pluck($column, $key = null) { @@ -23689,9 +23563,9 @@ namespace { * @param string $pageName * @param int|null $page * @param \Closure|int|null $total - * @return \Illuminate\Pagination\LengthAwarePaginator + * @return \Illuminate\Pagination\LengthAwarePaginator * @throws \InvalidArgumentException - * @static + * @static */ public static function paginate($perPage = null, $columns = [], $pageName = 'page', $page = null, $total = null) { @@ -23706,8 +23580,8 @@ namespace { * @param array|string $columns * @param string $pageName * @param int|null $page - * @return \Illuminate\Contracts\Pagination\Paginator - * @static + * @return \Illuminate\Contracts\Pagination\Paginator + * @static */ public static function simplePaginate($perPage = null, $columns = [], $pageName = 'page', $page = null) { @@ -23722,8 +23596,8 @@ namespace { * @param array|string $columns * @param string $cursorName * @param \Illuminate\Pagination\Cursor|string|null $cursor - * @return \Illuminate\Contracts\Pagination\CursorPaginator - * @static + * @return \Illuminate\Contracts\Pagination\CursorPaginator + * @static */ public static function cursorPaginate($perPage = null, $columns = [], $cursorName = 'cursor', $cursor = null) { @@ -23735,8 +23609,8 @@ namespace { * Save a new model and return the instance. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function create($attributes = []) { @@ -23748,8 +23622,8 @@ namespace { * Save a new model and return the instance without raising model events. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function createQuietly($attributes = []) { @@ -23761,8 +23635,8 @@ namespace { * Save a new model and return the instance. Allow mass-assignment. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function forceCreate($attributes) { @@ -23774,8 +23648,8 @@ namespace { * Save a new model instance with mass assignment without raising model events. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function forceCreateQuietly($attributes = []) { @@ -23789,8 +23663,8 @@ namespace { * @param array $values * @param array|string $uniqueBy * @param array|null $update - * @return int - * @static + * @return int + * @static */ public static function upsert($values, $uniqueBy, $update = null) { @@ -23802,8 +23676,8 @@ namespace { * Register a replacement for the default delete function. * * @param \Closure $callback - * @return void - * @static + * @return void + * @static */ public static function onDelete($callback) { @@ -23815,8 +23689,8 @@ namespace { * Call the given local model scopes. * * @param array|string $scopes - * @return static|mixed - * @static + * @return static|mixed + * @static */ public static function scopes($scopes) { @@ -23827,8 +23701,8 @@ namespace { /** * Apply the scopes to the Eloquent builder instance and return it. * - * @return static - * @static + * @return static + * @static */ public static function applyScopes() { @@ -23840,8 +23714,8 @@ namespace { * Prevent the specified relations from being eager loaded. * * @param mixed $relations - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function without($relations) { @@ -23853,8 +23727,8 @@ namespace { * Set the relationships that should be eager loaded while removing any previously added eager loading specifications. * * @param array): mixed)|string>|string $relations - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withOnly($relations) { @@ -23866,8 +23740,8 @@ namespace { * Create a new instance of the model being queried. * * @param array $attributes - * @return TModel - * @static + * @return TModel + * @static */ public static function newModelInstance($attributes = []) { @@ -23882,8 +23756,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|array|string $attributes * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withAttributes($attributes, $value = null) { @@ -23895,8 +23769,8 @@ namespace { * Apply query-time casts to the model instance. * * @param array $casts - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withCasts($casts) { @@ -23909,8 +23783,8 @@ namespace { * * @template TModelValue * @param \Closure(): TModelValue $scope - * @return TModelValue - * @static + * @return TModelValue + * @static */ public static function withSavepointIfNeeded($scope) { @@ -23921,8 +23795,8 @@ namespace { /** * Get the underlying query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function getQuery() { @@ -23934,8 +23808,8 @@ namespace { * Set the underlying query builder instance. * * @param \Illuminate\Database\Query\Builder $query - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function setQuery($query) { @@ -23946,8 +23820,8 @@ namespace { /** * Get a base query builder instance. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function toBase() { @@ -23958,8 +23832,8 @@ namespace { /** * Get the relationships being eagerly loaded. * - * @return array - * @static + * @return array + * @static */ public static function getEagerLoads() { @@ -23971,8 +23845,8 @@ namespace { * Set the relationships being eagerly loaded. * * @param array $eagerLoad - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function setEagerLoads($eagerLoad) { @@ -23984,8 +23858,8 @@ namespace { * Indicate that the given relationships should not be eagerly loaded. * * @param array $relations - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withoutEagerLoad($relations) { @@ -23996,8 +23870,8 @@ namespace { /** * Flush the relationships being eagerly loaded. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withoutEagerLoads() { @@ -24008,8 +23882,8 @@ namespace { /** * Get the model instance being queried. * - * @return TModel - * @static + * @return TModel + * @static */ public static function getModel() { @@ -24022,8 +23896,8 @@ namespace { * * @template TModelNew of \Illuminate\Database\Eloquent\Model * @param TModelNew $model - * @return static - * @static + * @return static + * @static */ public static function setModel($model) { @@ -24035,8 +23909,8 @@ namespace { * Get the given macro by name. * * @param string $name - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getMacro($name) { @@ -24048,8 +23922,8 @@ namespace { * Checks if a macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasMacro($name) { @@ -24061,8 +23935,8 @@ namespace { * Get the given global macro by name. * * @param string $name - * @return \Closure - * @static + * @return \Closure + * @static */ public static function getGlobalMacro($name) { @@ -24073,8 +23947,8 @@ namespace { * Checks if a global macro is registered. * * @param string $name - * @return bool - * @static + * @return bool + * @static */ public static function hasGlobalMacro($name) { @@ -24084,8 +23958,8 @@ namespace { /** * Clone the Eloquent query builder. * - * @return static - * @static + * @return static + * @static */ public static function clone() { @@ -24097,8 +23971,8 @@ namespace { * Register a closure to be invoked on a clone. * * @param \Closure $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function onClone($callback) { @@ -24111,8 +23985,8 @@ namespace { * * @param int $count * @param callable(\Illuminate\Support\Collection, int): mixed $callback - * @return bool - * @static + * @return bool + * @static */ public static function chunk($count, $callback) { @@ -24126,8 +24000,8 @@ namespace { * @template TReturn * @param callable(TValue): TReturn $callback * @param int $count - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function chunkMap($callback, $count = 1000) { @@ -24140,9 +24014,9 @@ namespace { * * @param callable(TValue, int): mixed $callback * @param int $count - * @return bool + * @return bool * @throws \RuntimeException - * @static + * @static */ public static function each($callback, $count = 1000) { @@ -24157,8 +24031,8 @@ namespace { * @param callable(\Illuminate\Support\Collection, int): mixed $callback * @param string|null $column * @param string|null $alias - * @return bool - * @static + * @return bool + * @static */ public static function chunkById($count, $callback, $column = null, $alias = null) { @@ -24173,8 +24047,8 @@ namespace { * @param callable(\Illuminate\Support\Collection, int): mixed $callback * @param string|null $column * @param string|null $alias - * @return bool - * @static + * @return bool + * @static */ public static function chunkByIdDesc($count, $callback, $column = null, $alias = null) { @@ -24190,9 +24064,9 @@ namespace { * @param string|null $column * @param string|null $alias * @param bool $descending - * @return bool + * @return bool * @throws \RuntimeException - * @static + * @static */ public static function orderedChunkById($count, $callback, $column = null, $alias = null, $descending = false) { @@ -24207,8 +24081,8 @@ namespace { * @param int $count * @param string|null $column * @param string|null $alias - * @return bool - * @static + * @return bool + * @static */ public static function eachById($callback, $count = 1000, $column = null, $alias = null) { @@ -24220,9 +24094,9 @@ namespace { * Query lazily, by chunks of the given size. * * @param int $chunkSize - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \InvalidArgumentException - * @static + * @static */ public static function lazy($chunkSize = 1000) { @@ -24236,9 +24110,9 @@ namespace { * @param int $chunkSize * @param string|null $column * @param string|null $alias - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \InvalidArgumentException - * @static + * @static */ public static function lazyById($chunkSize = 1000, $column = null, $alias = null) { @@ -24252,9 +24126,9 @@ namespace { * @param int $chunkSize * @param string|null $column * @param string|null $alias - * @return \Illuminate\Support\LazyCollection + * @return \Illuminate\Support\LazyCollection * @throws \InvalidArgumentException - * @static + * @static */ public static function lazyByIdDesc($chunkSize = 1000, $column = null, $alias = null) { @@ -24266,8 +24140,8 @@ namespace { * Execute the query and get the first result. * * @param array|string $columns - * @return TValue|null - * @static + * @return TValue|null + * @static */ public static function first($columns = []) { @@ -24279,10 +24153,10 @@ namespace { * Execute the query and get the first result if it's the sole matching record. * * @param array|string $columns - * @return TValue + * @return TValue * @throws \Illuminate\Database\RecordsNotFoundException * @throws \Illuminate\Database\MultipleRecordsFoundException - * @static + * @static */ public static function baseSole($columns = []) { @@ -24294,8 +24168,8 @@ namespace { * Pass the query to a given callback. * * @param callable($this): mixed $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function tap($callback) { @@ -24311,8 +24185,8 @@ namespace { * @param (\Closure($this): TWhenParameter)|TWhenParameter|null $value * @param (callable($this, TWhenParameter): TWhenReturnType)|null $callback * @param (callable($this, TWhenParameter): TWhenReturnType)|null $default - * @return $this|TWhenReturnType - * @static + * @return $this|TWhenReturnType + * @static */ public static function when($value = null, $callback = null, $default = null) { @@ -24328,8 +24202,8 @@ namespace { * @param (\Closure($this): TUnlessParameter)|TUnlessParameter|null $value * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $callback * @param (callable($this, TUnlessParameter): TUnlessReturnType)|null $default - * @return $this|TUnlessReturnType - * @static + * @return $this|TUnlessReturnType + * @static */ public static function unless($value = null, $callback = null, $default = null) { @@ -24346,9 +24220,9 @@ namespace { * @param int $count * @param string $boolean * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \RuntimeException - * @static + * @static */ public static function has($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null) { @@ -24362,8 +24236,8 @@ namespace { * @param \Illuminate\Database\Eloquent\Relations\Relation<*, *, *>|string $relation * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHas($relation, $operator = '>=', $count = 1) { @@ -24378,8 +24252,8 @@ namespace { * @param \Illuminate\Database\Eloquent\Relations\Relation|string $relation * @param string $boolean * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function doesntHave($relation, $boolean = 'and', $callback = null) { @@ -24391,8 +24265,8 @@ namespace { * Add a relationship count / exists condition to the query with an "or". * * @param \Illuminate\Database\Eloquent\Relations\Relation<*, *, *>|string $relation - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orDoesntHave($relation) { @@ -24408,8 +24282,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereHas($relation, $callback = null, $operator = '>=', $count = 1) { @@ -24426,8 +24300,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Database\Eloquent\Relations\Relation<*, *, *>): mixed)|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withWhereHas($relation, $callback = null, $operator = '>=', $count = 1) { @@ -24443,8 +24317,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereHas($relation, $callback = null, $operator = '>=', $count = 1) { @@ -24458,8 +24332,8 @@ namespace { * @template TRelatedModel of \Illuminate\Database\Eloquent\Model * @param \Illuminate\Database\Eloquent\Relations\Relation|string $relation * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereDoesntHave($relation, $callback = null) { @@ -24473,8 +24347,8 @@ namespace { * @template TRelatedModel of \Illuminate\Database\Eloquent\Model * @param \Illuminate\Database\Eloquent\Relations\Relation|string $relation * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereDoesntHave($relation, $callback = null) { @@ -24492,8 +24366,8 @@ namespace { * @param int $count * @param string $boolean * @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function hasMorph($relation, $types, $operator = '>=', $count = 1, $boolean = 'and', $callback = null) { @@ -24508,8 +24382,8 @@ namespace { * @param string|array $types * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHasMorph($relation, $types, $operator = '>=', $count = 1) { @@ -24525,8 +24399,8 @@ namespace { * @param string|array $types * @param string $boolean * @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function doesntHaveMorph($relation, $types, $boolean = 'and', $callback = null) { @@ -24539,8 +24413,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation * @param string|array $types - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orDoesntHaveMorph($relation, $types) { @@ -24557,8 +24431,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1) { @@ -24575,8 +24449,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback * @param string $operator * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereHasMorph($relation, $types, $callback = null, $operator = '>=', $count = 1) { @@ -24591,8 +24465,8 @@ namespace { * @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation * @param string|array $types * @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereDoesntHaveMorph($relation, $types, $callback = null) { @@ -24607,8 +24481,8 @@ namespace { * @param \Illuminate\Database\Eloquent\Relations\MorphTo|string $relation * @param string|array $types * @param (\Closure(\Illuminate\Database\Eloquent\Builder, string): mixed)|null $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereDoesntHaveMorph($relation, $types, $callback = null) { @@ -24624,8 +24498,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereRelation($relation, $column, $operator = null, $value = null) { @@ -24640,8 +24514,8 @@ namespace { * @param \Closure|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withWhereRelation($relation, $column, $operator = null, $value = null) { @@ -24657,8 +24531,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereRelation($relation, $column, $operator = null, $value = null) { @@ -24674,8 +24548,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereDoesntHaveRelation($relation, $column, $operator = null, $value = null) { @@ -24691,8 +24565,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereDoesntHaveRelation($relation, $column, $operator = null, $value = null) { @@ -24709,8 +24583,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereMorphRelation($relation, $types, $column, $operator = null, $value = null) { @@ -24727,8 +24601,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereMorphRelation($relation, $types, $column, $operator = null, $value = null) { @@ -24745,8 +24619,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereMorphDoesntHaveRelation($relation, $types, $column, $operator = null, $value = null) { @@ -24763,8 +24637,8 @@ namespace { * @param (\Closure(\Illuminate\Database\Eloquent\Builder): mixed)|string|array|\Illuminate\Contracts\Database\Query\Expression $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereMorphDoesntHaveRelation($relation, $types, $column, $operator = null, $value = null) { @@ -24777,8 +24651,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation * @param \Illuminate\Database\Eloquent\Model|iterable|string|null $model - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereMorphedTo($relation, $model, $boolean = 'and') { @@ -24791,8 +24665,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation * @param \Illuminate\Database\Eloquent\Model|iterable|string $model - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotMorphedTo($relation, $model, $boolean = 'and') { @@ -24805,8 +24679,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation * @param \Illuminate\Database\Eloquent\Model|iterable|string|null $model - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereMorphedTo($relation, $model) { @@ -24819,8 +24693,8 @@ namespace { * * @param \Illuminate\Database\Eloquent\Relations\MorphTo<*, *>|string $relation * @param \Illuminate\Database\Eloquent\Model|iterable|string $model - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotMorphedTo($relation, $model) { @@ -24834,9 +24708,9 @@ namespace { * @param \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Collection $related * @param string|null $relationshipName * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \Illuminate\Database\Eloquent\RelationNotFoundException - * @static + * @static */ public static function whereBelongsTo($related, $relationshipName = null, $boolean = 'and') { @@ -24849,9 +24723,9 @@ namespace { * * @param \Illuminate\Database\Eloquent\Model $related * @param string|null $relationshipName - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \RuntimeException - * @static + * @static */ public static function orWhereBelongsTo($related, $relationshipName = null) { @@ -24865,8 +24739,8 @@ namespace { * @param mixed $relations * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $function - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withAggregate($relations, $column, $function = null) { @@ -24878,8 +24752,8 @@ namespace { * Add subselect queries to count the relations. * * @param mixed $relations - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withCount($relations) { @@ -24892,8 +24766,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withMax($relation, $column) { @@ -24906,8 +24780,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withMin($relation, $column) { @@ -24920,8 +24794,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withSum($relation, $column) { @@ -24934,8 +24808,8 @@ namespace { * * @param string|array $relation * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withAvg($relation, $column) { @@ -24947,8 +24821,8 @@ namespace { * Add subselect queries to include the existence of related models. * * @param string|array $relation - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function withExists($relation) { @@ -24960,8 +24834,8 @@ namespace { * Merge the where constraints from another query to the current query. * * @param \Illuminate\Database\Eloquent\Builder<*> $from - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function mergeConstraintsFrom($from) { @@ -24973,8 +24847,8 @@ namespace { * Set the columns to be selected. * * @param array|mixed $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function select($columns = []) { @@ -24987,9 +24861,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query * @param string $as - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function selectSub($query, $as) { @@ -25001,8 +24875,8 @@ namespace { * Add a new "raw" select expression to the query. * * @param string $expression - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function selectRaw($expression, $bindings = []) { @@ -25015,9 +24889,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query * @param string $as - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function fromSub($query, $as) { @@ -25030,8 +24904,8 @@ namespace { * * @param string $expression * @param mixed $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function fromRaw($expression, $bindings = []) { @@ -25043,8 +24917,8 @@ namespace { * Add a new select column to the query. * * @param array|mixed $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addSelect($column) { @@ -25055,8 +24929,8 @@ namespace { /** * Force the query to only return distinct results. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function distinct() { @@ -25069,8 +24943,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Contracts\Database\Query\Expression|string $table * @param string|null $as - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function from($table, $as = null) { @@ -25082,8 +24956,8 @@ namespace { * Add an index hint to suggest a query index. * * @param string $index - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function useIndex($index) { @@ -25095,8 +24969,8 @@ namespace { * Add an index hint to force a query index. * * @param string $index - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forceIndex($index) { @@ -25108,8 +24982,8 @@ namespace { * Add an index hint to ignore a query index. * * @param string $index - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function ignoreIndex($index) { @@ -25126,8 +25000,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second * @param string $type * @param bool $where - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function join($table, $first, $operator = null, $second = null, $type = 'inner', $where = false) { @@ -25143,8 +25017,8 @@ namespace { * @param string $operator * @param \Illuminate\Contracts\Database\Query\Expression|string $second * @param string $type - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function joinWhere($table, $first, $operator, $second, $type = 'inner') { @@ -25162,9 +25036,9 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second * @param string $type * @param bool $where - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function joinSub($query, $as, $first, $operator = null, $second = null, $type = 'inner', $where = false) { @@ -25176,8 +25050,8 @@ namespace { * Add a lateral join clause to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function joinLateral($query, $as, $type = 'inner') { @@ -25189,8 +25063,8 @@ namespace { * Add a lateral left join to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoinLateral($query, $as) { @@ -25205,8 +25079,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoin($table, $first, $operator = null, $second = null) { @@ -25221,8 +25095,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoinWhere($table, $first, $operator, $second) { @@ -25238,8 +25112,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function leftJoinSub($query, $as, $first, $operator = null, $second = null) { @@ -25254,8 +25128,8 @@ namespace { * @param \Closure|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function rightJoin($table, $first, $operator = null, $second = null) { @@ -25270,8 +25144,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string $operator * @param \Illuminate\Contracts\Database\Query\Expression|string $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function rightJoinWhere($table, $first, $operator, $second) { @@ -25287,8 +25161,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function rightJoinSub($query, $as, $first, $operator = null, $second = null) { @@ -25303,8 +25177,8 @@ namespace { * @param \Closure|\Illuminate\Contracts\Database\Query\Expression|string|null $first * @param string|null $operator * @param \Illuminate\Contracts\Database\Query\Expression|string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function crossJoin($table, $first = null, $operator = null, $second = null) { @@ -25317,8 +25191,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query * @param string $as - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function crossJoinSub($query, $as) { @@ -25331,8 +25205,8 @@ namespace { * * @param array $wheres * @param array $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function mergeWheres($wheres, $bindings) { @@ -25346,9 +25220,9 @@ namespace { * @param string $value * @param string $operator * @param bool $useDefault - * @return array + * @return array * @throws \InvalidArgumentException - * @static + * @static */ public static function prepareValueAndOperator($value, $operator, $useDefault = false) { @@ -25363,8 +25237,8 @@ namespace { * @param string|null $operator * @param string|null $second * @param string|null $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereColumn($first, $operator = null, $second = null, $boolean = 'and') { @@ -25378,8 +25252,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string|array $first * @param string|null $operator * @param string|null $second - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereColumn($first, $operator = null, $second = null) { @@ -25393,8 +25267,8 @@ namespace { * @param string $sql * @param mixed $bindings * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereRaw($sql, $bindings = [], $boolean = 'and') { @@ -25407,8 +25281,8 @@ namespace { * * @param string $sql * @param mixed $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereRaw($sql, $bindings = []) { @@ -25424,8 +25298,8 @@ namespace { * @param bool $caseSensitive * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereLike($column, $value, $caseSensitive = false, $boolean = 'and', $not = false) { @@ -25439,8 +25313,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $value * @param bool $caseSensitive - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereLike($column, $value, $caseSensitive = false) { @@ -25455,8 +25329,8 @@ namespace { * @param string $value * @param bool $caseSensitive * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotLike($column, $value, $caseSensitive = false, $boolean = 'and') { @@ -25470,8 +25344,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $value * @param bool $caseSensitive - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotLike($column, $value, $caseSensitive = false) { @@ -25486,8 +25360,8 @@ namespace { * @param mixed $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereIn($column, $values, $boolean = 'and', $not = false) { @@ -25500,8 +25374,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param mixed $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereIn($column, $values) { @@ -25515,8 +25389,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param mixed $values * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotIn($column, $values, $boolean = 'and') { @@ -25529,8 +25403,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param mixed $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotIn($column, $values) { @@ -25545,8 +25419,8 @@ namespace { * @param \Illuminate\Contracts\Support\Arrayable|array $values * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereIntegerInRaw($column, $values, $boolean = 'and', $not = false) { @@ -25559,8 +25433,8 @@ namespace { * * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereIntegerInRaw($column, $values) { @@ -25574,8 +25448,8 @@ namespace { * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereIntegerNotInRaw($column, $values, $boolean = 'and') { @@ -25588,8 +25462,8 @@ namespace { * * @param string $column * @param \Illuminate\Contracts\Support\Arrayable|array $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereIntegerNotInRaw($column, $values) { @@ -25603,8 +25477,8 @@ namespace { * @param string|array|\Illuminate\Contracts\Database\Query\Expression $columns * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNull($columns, $boolean = 'and', $not = false) { @@ -25616,8 +25490,8 @@ namespace { * Add an "or where null" clause to the query. * * @param string|array|\Illuminate\Contracts\Database\Query\Expression $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNull($column) { @@ -25630,8 +25504,8 @@ namespace { * * @param string|array|\Illuminate\Contracts\Database\Query\Expression $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotNull($columns, $boolean = 'and') { @@ -25645,8 +25519,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereBetween($column, $values, $boolean = 'and', $not = false) { @@ -25660,8 +25534,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereBetweenColumns($column, $values, $boolean = 'and', $not = false) { @@ -25673,8 +25547,8 @@ namespace { * Add an or where between statement to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereBetween($column, $values) { @@ -25686,8 +25560,8 @@ namespace { * Add an or where between statement using columns to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereBetweenColumns($column, $values) { @@ -25700,8 +25574,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotBetween($column, $values, $boolean = 'and') { @@ -25714,8 +25588,8 @@ namespace { * * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotBetweenColumns($column, $values, $boolean = 'and') { @@ -25727,8 +25601,8 @@ namespace { * Add an or where not between statement to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotBetween($column, $values) { @@ -25740,8 +25614,8 @@ namespace { * Add an or where not between statement using columns to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotBetweenColumns($column, $values) { @@ -25753,8 +25627,8 @@ namespace { * Add an "or where not null" clause to the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotNull($column) { @@ -25769,8 +25643,8 @@ namespace { * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereDate($column, $operator, $value = null, $boolean = 'and') { @@ -25784,8 +25658,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereDate($column, $operator, $value = null) { @@ -25800,8 +25674,8 @@ namespace { * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereTime($column, $operator, $value = null, $boolean = 'and') { @@ -25815,8 +25689,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|null $operator * @param \DateTimeInterface|string|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereTime($column, $operator, $value = null) { @@ -25831,8 +25705,8 @@ namespace { * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereDay($column, $operator, $value = null, $boolean = 'and') { @@ -25846,8 +25720,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereDay($column, $operator, $value = null) { @@ -25862,8 +25736,8 @@ namespace { * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereMonth($column, $operator, $value = null, $boolean = 'and') { @@ -25877,8 +25751,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereMonth($column, $operator, $value = null) { @@ -25893,8 +25767,8 @@ namespace { * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereYear($column, $operator, $value = null, $boolean = 'and') { @@ -25908,8 +25782,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|string $column * @param \DateTimeInterface|string|int|null $operator * @param \DateTimeInterface|string|int|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereYear($column, $operator, $value = null) { @@ -25921,8 +25795,8 @@ namespace { * Add a nested where statement to the query. * * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNested($callback, $boolean = 'and') { @@ -25933,8 +25807,8 @@ namespace { /** * Create a new query instance for nested where condition. * - * @return \Illuminate\Database\Query\Builder - * @static + * @return \Illuminate\Database\Query\Builder + * @static */ public static function forNestedWhere() { @@ -25947,8 +25821,8 @@ namespace { * * @param \Illuminate\Database\Query\Builder $query * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addNestedWhereQuery($query, $boolean = 'and') { @@ -25962,8 +25836,8 @@ namespace { * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereExists($callback, $boolean = 'and', $not = false) { @@ -25976,8 +25850,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereExists($callback, $not = false) { @@ -25990,8 +25864,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNotExists($callback, $boolean = 'and') { @@ -26003,8 +25877,8 @@ namespace { * Add a where not exists clause to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $callback - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNotExists($callback) { @@ -26017,8 +25891,8 @@ namespace { * * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addWhereExistsQuery($query, $boolean = 'and', $not = false) { @@ -26033,9 +25907,9 @@ namespace { * @param string $operator * @param array $values * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function whereRowValues($columns, $operator, $values, $boolean = 'and') { @@ -26049,8 +25923,8 @@ namespace { * @param array $columns * @param string $operator * @param array $values - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereRowValues($columns, $operator, $values) { @@ -26065,8 +25939,8 @@ namespace { * @param mixed $value * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonContains($column, $value, $boolean = 'and', $not = false) { @@ -26079,8 +25953,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonContains($column, $value) { @@ -26094,8 +25968,8 @@ namespace { * @param string $column * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonDoesntContain($column, $value, $boolean = 'and') { @@ -26108,8 +25982,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonDoesntContain($column, $value) { @@ -26124,8 +25998,8 @@ namespace { * @param mixed $value * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonOverlaps($column, $value, $boolean = 'and', $not = false) { @@ -26138,8 +26012,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonOverlaps($column, $value) { @@ -26153,8 +26027,8 @@ namespace { * @param string $column * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonDoesntOverlap($column, $value, $boolean = 'and') { @@ -26167,8 +26041,8 @@ namespace { * * @param string $column * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonDoesntOverlap($column, $value) { @@ -26182,8 +26056,8 @@ namespace { * @param string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonContainsKey($column, $boolean = 'and', $not = false) { @@ -26195,8 +26069,8 @@ namespace { * Add an "or" clause that determines if a JSON path exists to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonContainsKey($column) { @@ -26209,8 +26083,8 @@ namespace { * * @param string $column * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonDoesntContainKey($column, $boolean = 'and') { @@ -26222,8 +26096,8 @@ namespace { * Add an "or" clause that determines if a JSON path does not exist to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonDoesntContainKey($column) { @@ -26238,8 +26112,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereJsonLength($column, $operator, $value = null, $boolean = 'and') { @@ -26253,8 +26127,8 @@ namespace { * @param string $column * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereJsonLength($column, $operator, $value = null) { @@ -26267,8 +26141,8 @@ namespace { * * @param string $method * @param array $parameters - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function dynamicWhere($method, $parameters) { @@ -26282,8 +26156,8 @@ namespace { * @param string|string[] $columns * @param string $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereFullText($columns, $value, $options = [], $boolean = 'and') { @@ -26296,8 +26170,8 @@ namespace { * * @param string|string[] $columns * @param string $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereFullText($columns, $value, $options = []) { @@ -26312,8 +26186,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereAll($columns, $operator = null, $value = null, $boolean = 'and') { @@ -26327,8 +26201,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression[]|\Closure[]|string[] $columns * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereAll($columns, $operator = null, $value = null) { @@ -26343,8 +26217,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereAny($columns, $operator = null, $value = null, $boolean = 'and') { @@ -26358,8 +26232,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression[]|\Closure[]|string[] $columns * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereAny($columns, $operator = null, $value = null) { @@ -26374,8 +26248,8 @@ namespace { * @param mixed $operator * @param mixed $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNone($columns, $operator = null, $value = null, $boolean = 'and') { @@ -26389,8 +26263,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression[]|\Closure[]|string[] $columns * @param mixed $operator * @param mixed $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNone($columns, $operator = null, $value = null) { @@ -26402,8 +26276,8 @@ namespace { * Add a "group by" clause to the query. * * @param array|\Illuminate\Contracts\Database\Query\Expression|string $groups - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function groupBy(...$groups) { @@ -26415,8 +26289,8 @@ namespace { * Add a raw groupBy clause to the query. * * @param string $sql - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function groupByRaw($sql, $bindings = []) { @@ -26431,8 +26305,8 @@ namespace { * @param string|int|float|null $operator * @param string|int|float|null $value * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function having($column, $operator = null, $value = null, $boolean = 'and') { @@ -26446,8 +26320,8 @@ namespace { * @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column * @param string|int|float|null $operator * @param string|int|float|null $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHaving($column, $operator = null, $value = null) { @@ -26459,8 +26333,8 @@ namespace { * Add a nested having statement to the query. * * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingNested($callback, $boolean = 'and') { @@ -26473,8 +26347,8 @@ namespace { * * @param \Illuminate\Database\Query\Builder $query * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function addNestedHavingQuery($query, $boolean = 'and') { @@ -26488,8 +26362,8 @@ namespace { * @param array|string $columns * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingNull($columns, $boolean = 'and', $not = false) { @@ -26501,8 +26375,8 @@ namespace { * Add an "or having null" clause to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHavingNull($column) { @@ -26515,8 +26389,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingNotNull($columns, $boolean = 'and') { @@ -26528,8 +26402,8 @@ namespace { * Add an "or having not null" clause to the query. * * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHavingNotNull($column) { @@ -26543,8 +26417,8 @@ namespace { * @param string $column * @param string $boolean * @param bool $not - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingBetween($column, $values, $boolean = 'and', $not = false) { @@ -26557,8 +26431,8 @@ namespace { * * @param string $sql * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function havingRaw($sql, $bindings = [], $boolean = 'and') { @@ -26570,8 +26444,8 @@ namespace { * Add a raw or having clause to the query. * * @param string $sql - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orHavingRaw($sql, $bindings = []) { @@ -26584,9 +26458,9 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Contracts\Database\Query\Expression|string $column * @param string $direction - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function orderBy($column, $direction = 'asc') { @@ -26598,8 +26472,8 @@ namespace { * Add a descending "order by" clause to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Contracts\Database\Query\Expression|string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orderByDesc($column) { @@ -26611,8 +26485,8 @@ namespace { * Put the query's results in random order. * * @param string|int $seed - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function inRandomOrder($seed = '') { @@ -26625,8 +26499,8 @@ namespace { * * @param string $sql * @param array $bindings - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orderByRaw($sql, $bindings = []) { @@ -26638,8 +26512,8 @@ namespace { * Alias to set the "offset" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function skip($value) { @@ -26651,8 +26525,8 @@ namespace { * Set the "offset" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function offset($value) { @@ -26664,8 +26538,8 @@ namespace { * Alias to set the "limit" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function take($value) { @@ -26677,8 +26551,8 @@ namespace { * Set the "limit" value of the query. * * @param int $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function limit($value) { @@ -26691,8 +26565,8 @@ namespace { * * @param int $value * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function groupLimit($value, $column) { @@ -26705,8 +26579,8 @@ namespace { * * @param int $page * @param int $perPage - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forPage($page, $perPage = 15) { @@ -26720,8 +26594,8 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forPageBeforeId($perPage = 15, $lastId = 0, $column = 'id') { @@ -26735,8 +26609,8 @@ namespace { * @param int $perPage * @param int|null $lastId * @param string $column - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function forPageAfterId($perPage = 15, $lastId = 0, $column = 'id') { @@ -26749,8 +26623,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string|null $column * @param string $direction - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function reorder($column = null, $direction = 'asc') { @@ -26763,8 +26637,8 @@ namespace { * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $query * @param bool $all - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function union($query, $all = false) { @@ -26776,8 +26650,8 @@ namespace { * Add a union all statement to the query. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*> $query - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function unionAll($query) { @@ -26789,8 +26663,8 @@ namespace { * Lock the selected rows in the table. * * @param string|bool $value - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function lock($value = true) { @@ -26801,8 +26675,8 @@ namespace { /** * Lock the selected rows in the table for updating. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function lockForUpdate() { @@ -26813,8 +26687,8 @@ namespace { /** * Share lock the selected rows in the table. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function sharedLock() { @@ -26825,8 +26699,8 @@ namespace { /** * Register a closure to be invoked before the query is executed. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function beforeQuery($callback) { @@ -26837,8 +26711,8 @@ namespace { /** * Invoke the "before query" modification callbacks. * - * @return void - * @static + * @return void + * @static */ public static function applyBeforeQueryCallbacks() { @@ -26849,8 +26723,8 @@ namespace { /** * Get the SQL representation of the query. * - * @return string - * @static + * @return string + * @static */ public static function toSql() { @@ -26861,8 +26735,8 @@ namespace { /** * Get the raw SQL representation of the query with embedded bindings. * - * @return string - * @static + * @return string + * @static */ public static function toRawSql() { @@ -26873,8 +26747,8 @@ namespace { /** * Get a single expression value from the first result of a query. * - * @return mixed - * @static + * @return mixed + * @static */ public static function rawValue($expression, $bindings = []) { @@ -26886,8 +26760,8 @@ namespace { * Get the count of the total records for the paginator. * * @param array $columns - * @return int - * @static + * @return int + * @static */ public static function getCountForPagination($columns = []) { @@ -26900,8 +26774,8 @@ namespace { * * @param string $column * @param string $glue - * @return string - * @static + * @return string + * @static */ public static function implode($column, $glue = '') { @@ -26912,8 +26786,8 @@ namespace { /** * Determine if any rows exist for the current query. * - * @return bool - * @static + * @return bool + * @static */ public static function exists() { @@ -26924,8 +26798,8 @@ namespace { /** * Determine if no rows exist for the current query. * - * @return bool - * @static + * @return bool + * @static */ public static function doesntExist() { @@ -26936,8 +26810,8 @@ namespace { /** * Execute the given callback if no rows exist for the current query. * - * @return mixed - * @static + * @return mixed + * @static */ public static function existsOr($callback) { @@ -26948,8 +26822,8 @@ namespace { /** * Execute the given callback if rows exist for the current query. * - * @return mixed - * @static + * @return mixed + * @static */ public static function doesntExistOr($callback) { @@ -26961,8 +26835,8 @@ namespace { * Retrieve the "count" result of the query. * * @param \Illuminate\Contracts\Database\Query\Expression|string $columns - * @return int - * @static + * @return int + * @static */ public static function count($columns = '*') { @@ -26974,8 +26848,8 @@ namespace { * Retrieve the minimum value of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function min($column) { @@ -26987,8 +26861,8 @@ namespace { * Retrieve the maximum value of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function max($column) { @@ -27000,8 +26874,8 @@ namespace { * Retrieve the sum of the values of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function sum($column) { @@ -27013,8 +26887,8 @@ namespace { * Retrieve the average of the values of a given column. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function avg($column) { @@ -27026,8 +26900,8 @@ namespace { * Alias for the "avg" method. * * @param \Illuminate\Contracts\Database\Query\Expression|string $column - * @return mixed - * @static + * @return mixed + * @static */ public static function average($column) { @@ -27040,8 +26914,8 @@ namespace { * * @param string $function * @param array $columns - * @return mixed - * @static + * @return mixed + * @static */ public static function aggregate($function, $columns = []) { @@ -27054,8 +26928,8 @@ namespace { * * @param string $function * @param array $columns - * @return float|int - * @static + * @return float|int + * @static */ public static function numericAggregate($function, $columns = []) { @@ -27066,8 +26940,8 @@ namespace { /** * Insert new records into the database. * - * @return bool - * @static + * @return bool + * @static */ public static function insert($values) { @@ -27078,8 +26952,8 @@ namespace { /** * Insert new records into the database while ignoring errors. * - * @return int - * @static + * @return int + * @static */ public static function insertOrIgnore($values) { @@ -27091,8 +26965,8 @@ namespace { * Insert a new record and get the value of the primary key. * * @param string|null $sequence - * @return int - * @static + * @return int + * @static */ public static function insertGetId($values, $sequence = null) { @@ -27104,8 +26978,8 @@ namespace { * Insert new records into the table using a subquery. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return int - * @static + * @return int + * @static */ public static function insertUsing($columns, $query) { @@ -27117,8 +26991,8 @@ namespace { * Insert new records into the table using a subquery while ignoring errors. * * @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Eloquent\Builder<*>|string $query - * @return int - * @static + * @return int + * @static */ public static function insertOrIgnoreUsing($columns, $query) { @@ -27129,8 +27003,8 @@ namespace { /** * Update records in a PostgreSQL database using the update from syntax. * - * @return int - * @static + * @return int + * @static */ public static function updateFrom($values) { @@ -27141,8 +27015,8 @@ namespace { /** * Insert or update a record matching the attributes, and fill it with values. * - * @return bool - * @static + * @return bool + * @static */ public static function updateOrInsert($attributes, $values = []) { @@ -27155,9 +27029,9 @@ namespace { * * @param array $columns * @param array $extra - * @return int + * @return int * @throws \InvalidArgumentException - * @static + * @static */ public static function incrementEach($columns, $extra = []) { @@ -27170,9 +27044,9 @@ namespace { * * @param array $columns * @param array $extra - * @return int + * @return int * @throws \InvalidArgumentException - * @static + * @static */ public static function decrementEach($columns, $extra = []) { @@ -27183,8 +27057,8 @@ namespace { /** * Run a truncate statement on the table. * - * @return void - * @static + * @return void + * @static */ public static function truncate() { @@ -27195,8 +27069,8 @@ namespace { /** * Get all of the query builder's columns in a text-only array with all expressions evaluated. * - * @return array - * @static + * @return array + * @static */ public static function getColumns() { @@ -27208,8 +27082,8 @@ namespace { * Create a raw database expression. * * @param mixed $value - * @return \Illuminate\Contracts\Database\Query\Expression - * @static + * @return \Illuminate\Contracts\Database\Query\Expression + * @static */ public static function raw($value) { @@ -27220,8 +27094,8 @@ namespace { /** * Get the current query value bindings in a flattened array. * - * @return array - * @static + * @return array + * @static */ public static function getBindings() { @@ -27232,8 +27106,8 @@ namespace { /** * Get the raw array of bindings. * - * @return array - * @static + * @return array + * @static */ public static function getRawBindings() { @@ -27245,9 +27119,9 @@ namespace { * Set the bindings on the query builder. * * @param string $type - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function setBindings($bindings, $type = 'where') { @@ -27260,9 +27134,9 @@ namespace { * * @param mixed $value * @param string $type - * @return \Illuminate\Database\Eloquent\Builder + * @return \Illuminate\Database\Eloquent\Builder * @throws \InvalidArgumentException - * @static + * @static */ public static function addBinding($value, $type = 'where') { @@ -27274,8 +27148,8 @@ namespace { * Cast the given binding value. * * @param mixed $value - * @return mixed - * @static + * @return mixed + * @static */ public static function castBinding($value) { @@ -27286,8 +27160,8 @@ namespace { /** * Merge an array of bindings into our bindings. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function mergeBindings($query) { @@ -27298,8 +27172,8 @@ namespace { /** * Remove all of the expressions from a list of bindings. * - * @return array - * @static + * @return array + * @static */ public static function cleanBindings($bindings) { @@ -27310,8 +27184,8 @@ namespace { /** * Get the database query processor instance. * - * @return \Illuminate\Database\Query\Processors\Processor - * @static + * @return \Illuminate\Database\Query\Processors\Processor + * @static */ public static function getProcessor() { @@ -27322,8 +27196,8 @@ namespace { /** * Get the query grammar instance. * - * @return \Illuminate\Database\Query\Grammars\Grammar - * @static + * @return \Illuminate\Database\Query\Grammars\Grammar + * @static */ public static function getGrammar() { @@ -27334,8 +27208,8 @@ namespace { /** * Use the "write" PDO connection when executing the query. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function useWritePdo() { @@ -27346,8 +27220,8 @@ namespace { /** * Clone the query without the given properties. * - * @return static - * @static + * @return static + * @static */ public static function cloneWithout($properties) { @@ -27358,8 +27232,8 @@ namespace { /** * Clone the query without the given bindings. * - * @return static - * @static + * @return static + * @static */ public static function cloneWithoutBindings($except) { @@ -27371,8 +27245,8 @@ namespace { * Dump the current SQL and bindings. * * @param mixed $args - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function dump(...$args) { @@ -27383,8 +27257,8 @@ namespace { /** * Dump the raw current SQL with embedded bindings. * - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function dumpRawSql() { @@ -27395,8 +27269,8 @@ namespace { /** * Die and dump the current SQL and bindings. * - * @return never - * @static + * @return never + * @static */ public static function dd() { @@ -27407,8 +27281,8 @@ namespace { /** * Die and dump the current SQL with embedded bindings. * - * @return never - * @static + * @return never + * @static */ public static function ddRawSql() { @@ -27420,8 +27294,8 @@ namespace { * Add a where clause to determine if a "date" column is in the past to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function wherePast($columns) { @@ -27433,8 +27307,8 @@ namespace { * Add a where clause to determine if a "date" column is in the past or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNowOrPast($columns) { @@ -27446,8 +27320,8 @@ namespace { * Add an "or where" clause to determine if a "date" column is in the past to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWherePast($columns) { @@ -27459,8 +27333,8 @@ namespace { * Add a where clause to determine if a "date" column is in the past or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNowOrPast($columns) { @@ -27472,8 +27346,8 @@ namespace { * Add a where clause to determine if a "date" column is in the future to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereFuture($columns) { @@ -27485,8 +27359,8 @@ namespace { * Add a where clause to determine if a "date" column is in the future or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereNowOrFuture($columns) { @@ -27498,8 +27372,8 @@ namespace { * Add an "or where" clause to determine if a "date" column is in the future to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereFuture($columns) { @@ -27511,8 +27385,8 @@ namespace { * Add an "or where" clause to determine if a "date" column is in the future or now to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereNowOrFuture($columns) { @@ -27525,8 +27399,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereToday($columns, $boolean = 'and') { @@ -27538,8 +27412,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is before today. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereBeforeToday($columns) { @@ -27551,8 +27425,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is today or before to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereTodayOrBefore($columns) { @@ -27564,8 +27438,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is after today. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereAfterToday($columns) { @@ -27577,8 +27451,8 @@ namespace { * Add a "where date" clause to determine if a "date" column is today or after to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function whereTodayOrAfter($columns) { @@ -27590,8 +27464,8 @@ namespace { * Add an "or where date" clause to determine if a "date" column is today to the query. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereToday($columns) { @@ -27603,8 +27477,8 @@ namespace { * Add an "or where date" clause to determine if a "date" column is before today. * * @param array|string $columns - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereBeforeToday($columns) { @@ -27617,8 +27491,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereTodayOrBefore($columns) { @@ -27631,8 +27505,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereAfterToday($columns) { @@ -27645,8 +27519,8 @@ namespace { * * @param array|string $columns * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static + * @return \Illuminate\Database\Eloquent\Builder + * @static */ public static function orWhereTodayOrAfter($columns) { @@ -27657,8 +27531,8 @@ namespace { /** * Explains the query. * - * @return \Illuminate\Support\Collection - * @static + * @return \Illuminate\Support\Collection + * @static */ public static function explain() { @@ -27672,8 +27546,8 @@ namespace { * @param string $name * @param object|callable $macro * @param-closure-this static $macro - * @return void - * @static + * @return void + * @static */ public static function macro($name, $macro) { @@ -27685,9 +27559,9 @@ namespace { * * @param object $mixin * @param bool $replace - * @return void + * @return void * @throws \ReflectionException - * @static + * @static */ public static function mixin($mixin, $replace = true) { @@ -27697,8 +27571,8 @@ namespace { /** * Flush the existing macros. * - * @return void - * @static + * @return void + * @static */ public static function flushMacros() { @@ -27710,9 +27584,9 @@ namespace { * * @param string $method * @param array $parameters - * @return mixed + * @return mixed * @throws \BadMethodCallException - * @static + * @static */ public static function macroCall($method, $parameters) { diff --git a/app/Http/Controllers/Mall/AuthController.php b/app/Http/Controllers/Mall/AuthController.php index af68e2f..e6313ff 100644 --- a/app/Http/Controllers/Mall/AuthController.php +++ b/app/Http/Controllers/Mall/AuthController.php @@ -7,18 +7,22 @@ use App\Models\Game\Player\Player; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; +use Illuminate\Validation\Rule; class AuthController extends Controller { public function auth(Request $request): RedirectResponse { - if (!$request->hasValidSignature()) { + if (! $request->hasValidSignature()) { abort(401); } // Validate the request data $validated = $request->validate([ - 'pid' => 'required|exists:player.player,id', + 'pid' => [ + 'required', + Rule::exists(Player::class, 'id'), + ], 'sid' => 'required|int', ]); diff --git a/app/Http/Controllers/WikiController.php b/app/Http/Controllers/WikiController.php new file mode 100644 index 0000000..0dbe6c5 --- /dev/null +++ b/app/Http/Controllers/WikiController.php @@ -0,0 +1,105 @@ +select('locale_name', 'vnum') + ->when($request->query('query'), fn ($q, $term) => $q->where('locale_name', 'like', "%$term%")) + ->take(10) + ->get() + ); + } + + public function show(ItemProto $item) + { + if ($item->type->isUpgradeable()) { + $baseName = str($item->locale_name) + ->beforeLast('+'); + + $items = ItemProto::select($this->itemColumns) + ->where('locale_name', 'like', "$baseName%") + ->orderBy('vnum', 'asc') + ->with([ + 'refineSet', + 'refineSet.item0' => fn ($q) => $q->select(['vnum', 'locale_name']), + 'refineSet.item1' => fn ($q) => $q->select(['vnum', 'locale_name']), + 'refineSet.item2' => fn ($q) => $q->select(['vnum', 'locale_name']), + 'refineSet.item3' => fn ($q) => $q->select(['vnum', 'locale_name']), + 'refineSet.item4' => fn ($q) => $q->select(['vnum', 'locale_name']), + 'sellers.mob', + ]) + ->get(); + + if ($items->first()->vnum) { + $from = ItemProto::select($this->itemColumns) + ->whereRefinedVnum($items->first()->vnum) + // ->where('refine_set', '!=', 0) + ->first(); + + if ($from) { + $items->prepend($from); + } + } + + if (($last = $items->last())->refined_vnum && $last->refine_set !== 0) { + $to = ItemProto::select($this->itemColumns) + ->whereVnum($items->last()->refined_vnum) + ->first(); + + if ($to) { + $items->push($to); + } + } + + return [ + 'items' => ItemProtoResource::collection($items), + 'sources' => [ + 'shops' => ItemProtoShopResource::collection( + $items + ->flatMap(fn ($item) => $item->sellers) + ->unique(fn ($seller) => $seller->vnum) + ), + ], + ]; + } + + return new ItemProtoResource( + $item->loadMissing([ + 'sellers.mob', + ]) + ); + } +} diff --git a/app/Http/Resources/Models/ItemProtoRefineResource.php b/app/Http/Resources/Models/ItemProtoRefineResource.php new file mode 100644 index 0000000..fe4e9c6 --- /dev/null +++ b/app/Http/Resources/Models/ItemProtoRefineResource.php @@ -0,0 +1,31 @@ + + */ + public function toArray(Request $request): array + { + $maxItems = 5; + + return [ + 'items' => collect(range(0, $maxItems - 1)) + ->filter(fn ($index) => $this->{"item$index"}) + ->map(fn ($index) => [ + 'vnum' => $this->{"item$index"}->vnum, + 'name' => $this->{"item$index"}->locale_name, + 'count' => $this->{"count$index"}, + ]), + 'cost' => $this->cost, + 'probability' => $this->prob, + ]; + } +} diff --git a/app/Http/Resources/Models/ItemProtoResource.php b/app/Http/Resources/Models/ItemProtoResource.php new file mode 100644 index 0000000..5bf4efb --- /dev/null +++ b/app/Http/Resources/Models/ItemProtoResource.php @@ -0,0 +1,46 @@ + + */ + public function toArray(Request $request): array + { + $maxLimits = 2; + $maxApplies = 3; + + return [ + 'vnum' => $this->vnum, + 'name' => $this->locale_name, + 'type' => $this->type->getLabel(), + 'subtype' => $this->subtype, + // 'refined_vnum', + 'refine_set' => new ItemProtoRefineResource($this->refineSet), + 'magic_pct' => $this->magic_pct, + // Limits + 'limits' => collect(range(0, $maxLimits - 1)) + ->map(fn ($index) => [ + 'type' => $this->{"limittype$index"}, + 'value' => $this->{"limitvalue$index"}, + ]) + ->filter(fn ($row) => $row['type']->value !== 0) + ->map(fn ($row) => ['type' => $row['type']->getLabel(), 'value' => $row['value']]), + // Applies + 'applies' => collect(range(0, $maxApplies - 1)) + ->map(fn ($index) => [ + 'type' => $this->{"applytype$index"}, + 'value' => $this->{"applyvalue$index"}, + ]) + ->filter(fn ($row) => $row['type']->value !== 0) + ->map(fn ($row) => ['type' => $row['type']->getLabel(), 'value' => $row['value']]), + ]; + } +} diff --git a/app/Http/Resources/Models/ItemProtoSearchResource.php b/app/Http/Resources/Models/ItemProtoSearchResource.php new file mode 100644 index 0000000..e45a296 --- /dev/null +++ b/app/Http/Resources/Models/ItemProtoSearchResource.php @@ -0,0 +1,22 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'vnum' => $this->vnum, + 'name' => $this->locale_name, + ]; + } +} diff --git a/app/Http/Resources/Models/ItemProtoShopResource.php b/app/Http/Resources/Models/ItemProtoShopResource.php new file mode 100644 index 0000000..549bad7 --- /dev/null +++ b/app/Http/Resources/Models/ItemProtoShopResource.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'vnum' => $this->vnum, + 'name' => $this->mob->locale_name, + 'count' => $this->pivot->count, + ]; + } +} diff --git a/app/Models/Account.php b/app/Models/Account.php index 3b439a1..dd30c69 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -10,6 +10,56 @@ use Illuminate\Foundation\Auth\User; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; +/** + * @property int $id + * @property string $login + * @property string $password + * @property string $social_id + * @property string $email + * @property \Illuminate\Support\Carbon $create_time + * @property AccountStatusEnum $status + * @property string|null $securitycode + * @property string $availDt + * @property int $mileage + * @property int $cash + * @property string $gold_expire + * @property string $silver_expire + * @property string $safebox_expire + * @property string $autoloot_expire + * @property string $fish_mind_expire + * @property string $marriage_fast_expire + * @property string $money_drop_rate_expire + * @property string|null $ip + * @property string|null $last_play + * @property-read \Illuminate\Notifications\DatabaseNotificationCollection $notifications + * @property-read int|null $notifications_count + * @property-read \Illuminate\Database\Eloquent\Collection $tokens + * @property-read int|null $tokens_count + * @method static \Illuminate\Database\Eloquent\Builder|Account newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Account newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Account query() + * @method static \Illuminate\Database\Eloquent\Builder|Account whereAutolootExpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereAvailDt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereCash($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereCreateTime($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereEmail($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereFishMindExpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereGoldExpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereIp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereLastPlay($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereLogin($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereMarriageFastExpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereMileage($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereMoneyDropRateExpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account wherePassword($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereSafeboxExpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereSecuritycode($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereSilverExpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereSocialId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Account whereStatus($value) + * @mixin \Eloquent + */ class Account extends User implements MustVerifyEmail { use HasApiTokens, HasFactory, Notifiable; diff --git a/app/Models/Enums/ApplyTypesEnum.php b/app/Models/Enums/ApplyTypesEnum.php new file mode 100644 index 0000000..cf37c56 --- /dev/null +++ b/app/Models/Enums/ApplyTypesEnum.php @@ -0,0 +1,105 @@ +name; + } +} diff --git a/app/Models/Enums/ArmorSubTypesEnum.php b/app/Models/Enums/ArmorSubTypesEnum.php new file mode 100644 index 0000000..865c708 --- /dev/null +++ b/app/Models/Enums/ArmorSubTypesEnum.php @@ -0,0 +1,20 @@ +name; + } +} diff --git a/app/Models/Enums/CostumeSubTypesEnum.php b/app/Models/Enums/CostumeSubTypesEnum.php new file mode 100644 index 0000000..b9de820 --- /dev/null +++ b/app/Models/Enums/CostumeSubTypesEnum.php @@ -0,0 +1,18 @@ +name; + } +} diff --git a/app/Models/Enums/ItemTypesEnum.php b/app/Models/Enums/ItemTypesEnum.php new file mode 100644 index 0000000..0d8b8d3 --- /dev/null +++ b/app/Models/Enums/ItemTypesEnum.php @@ -0,0 +1,53 @@ +name; + } + + public function isUpgradeable(): bool + { + return in_array($this, [self::ITEM_TYPE_WEAPON, self::ITEM_TYPE_ARMOR, self::ITEM_TYPE_BELT]); + } +} diff --git a/app/Models/Enums/LimitTypesEnum.php b/app/Models/Enums/LimitTypesEnum.php new file mode 100644 index 0000000..377c2c5 --- /dev/null +++ b/app/Models/Enums/LimitTypesEnum.php @@ -0,0 +1,23 @@ +name; + } +} diff --git a/app/Models/Enums/WeaponSubTypesEnum.php b/app/Models/Enums/WeaponSubTypesEnum.php new file mode 100644 index 0000000..ecae4fa --- /dev/null +++ b/app/Models/Enums/WeaponSubTypesEnum.php @@ -0,0 +1,20 @@ +name; + } +} diff --git a/app/Models/Game/Common/Locale.php b/app/Models/Game/Common/Locale.php index 0eafde2..8b85584 100644 --- a/app/Models/Game/Common/Locale.php +++ b/app/Models/Game/Common/Locale.php @@ -4,6 +4,16 @@ namespace App\Models\Game\Common; use Illuminate\Database\Eloquent\Model; +/** + * @property int $mKey + * @property string $mValue + * @method static \Illuminate\Database\Eloquent\Builder|Locale newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Locale newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Locale query() + * @method static \Illuminate\Database\Eloquent\Builder|Locale whereMKey($value) + * @method static \Illuminate\Database\Eloquent\Builder|Locale whereMValue($value) + * @mixin \Eloquent + */ class Locale extends Model { /** diff --git a/app/Models/Game/Highscore/GuildHighscoreCache.php b/app/Models/Game/Highscore/GuildHighscoreCache.php index b6a446e..a673d5f 100644 --- a/app/Models/Game/Highscore/GuildHighscoreCache.php +++ b/app/Models/Game/Highscore/GuildHighscoreCache.php @@ -5,6 +5,26 @@ namespace App\Models\Game\Highscore; use App\Models\Enums\EmpireEnum; use Illuminate\Database\Eloquent\Model; +/** + * @property int $id + * @property string $name + * @property string $master + * @property EmpireEnum $empire + * @property int $level + * @property int $ladder_point + * @property \Illuminate\Support\Carbon $date + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache query() + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereDate($value) + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereEmpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereLadderPoint($value) + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereLevel($value) + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereMaster($value) + * @method static \Illuminate\Database\Eloquent\Builder|GuildHighscoreCache whereName($value) + * @mixin \Eloquent + */ class GuildHighscoreCache extends Model { /** diff --git a/app/Models/Game/Highscore/HighscoreCache.php b/app/Models/Game/Highscore/HighscoreCache.php index 446b768..c22cdd5 100644 --- a/app/Models/Game/Highscore/HighscoreCache.php +++ b/app/Models/Game/Highscore/HighscoreCache.php @@ -6,6 +6,26 @@ use App\Models\Enums\CharacterClassEnum; use App\Models\Enums\EmpireEnum; use Illuminate\Database\Eloquent\Model; +/** + * @property int $id + * @property string $name + * @property CharacterClassEnum $job + * @property EmpireEnum $empire + * @property int $level + * @property int $exp + * @property \Illuminate\Support\Carbon $date + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache query() + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache whereDate($value) + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache whereEmpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache whereExp($value) + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache whereJob($value) + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache whereLevel($value) + * @method static \Illuminate\Database\Eloquent\Builder|HighscoreCache whereName($value) + * @mixin \Eloquent + */ class HighscoreCache extends Model { /** diff --git a/app/Models/Game/Player/Banword.php b/app/Models/Game/Player/Banword.php index 9c83a20..7b74c70 100644 --- a/app/Models/Game/Player/Banword.php +++ b/app/Models/Game/Player/Banword.php @@ -4,6 +4,14 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +/** + * @property int $word + * @method static \Illuminate\Database\Eloquent\Builder|Banword newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Banword newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Banword query() + * @method static \Illuminate\Database\Eloquent\Builder|Banword whereWord($value) + * @mixin \Eloquent + */ class Banword extends Model { /** diff --git a/app/Models/Game/Player/ItemAttr.php b/app/Models/Game/Player/ItemAttr.php index 35d1f99..ddef84c 100644 --- a/app/Models/Game/Player/ItemAttr.php +++ b/app/Models/Game/Player/ItemAttr.php @@ -4,6 +4,42 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +/** + * @property int $apply + * @property string $prob + * @property string $lv1 + * @property string $lv2 + * @property string $lv3 + * @property string $lv4 + * @property string $lv5 + * @property string $weapon + * @property string $body + * @property string $wrist + * @property string $foots + * @property string $neck + * @property string $head + * @property string $shield + * @property string $ear + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr query() + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereApply($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereEar($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereFoots($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereHead($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv3($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv4($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereLv5($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereNeck($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereProb($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereShield($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereWeapon($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttr whereWrist($value) + * @mixin \Eloquent + */ class ItemAttr extends Model { /** diff --git a/app/Models/Game/Player/ItemAttrRare.php b/app/Models/Game/Player/ItemAttrRare.php index 5342c7b..53e9170 100644 --- a/app/Models/Game/Player/ItemAttrRare.php +++ b/app/Models/Game/Player/ItemAttrRare.php @@ -4,6 +4,42 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +/** + * @property int $apply + * @property string $prob + * @property string $lv1 + * @property string $lv2 + * @property string $lv3 + * @property string $lv4 + * @property string $lv5 + * @property string $weapon + * @property string $body + * @property string $wrist + * @property string $foots + * @property string $neck + * @property string $head + * @property string $shield + * @property string $ear + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare query() + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereApply($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereBody($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereEar($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereFoots($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereHead($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereLv1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereLv2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereLv3($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereLv4($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereLv5($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereNeck($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereProb($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereShield($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereWeapon($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemAttrRare whereWrist($value) + * @mixin \Eloquent + */ class ItemAttrRare extends Model { /** diff --git a/app/Models/Game/Player/ItemProto.php b/app/Models/Game/Player/ItemProto.php index 8945f71..e8377ab 100644 --- a/app/Models/Game/Player/ItemProto.php +++ b/app/Models/Game/Player/ItemProto.php @@ -2,8 +2,106 @@ namespace App\Models\Game\Player; +use App\Models\Enums\ApplyTypesEnum; +use App\Models\Enums\ItemTypesEnum; +use App\Models\Enums\LimitTypesEnum; use Illuminate\Database\Eloquent\Model; +use Illuminate\Database\Eloquent\Relations\BelongsTo; +use Illuminate\Database\Eloquent\Relations\BelongsToMany; +/** + * @property int $vnum + * @property string $name + * @property string $locale_name + * @property ItemTypesEnum $type + * @property int $subtype + * @property int|null $weight + * @property int|null $size + * @property int|null $antiflag + * @property int|null $flag + * @property int|null $wearflag + * @property string $immuneflag + * @property int|null $gold + * @property int $shop_buy_price + * @property int $refined_vnum + * @property int $refine_set + * @property int $refine_set2 + * @property int $magic_pct + * @property LimitTypesEnum|null $limittype0 + * @property int|null $limitvalue0 + * @property LimitTypesEnum|null $limittype1 + * @property int|null $limitvalue1 + * @property ApplyTypesEnum|null $applytype0 + * @property int|null $applyvalue0 + * @property ApplyTypesEnum|null $applytype1 + * @property int|null $applyvalue1 + * @property ApplyTypesEnum|null $applytype2 + * @property int|null $applyvalue2 + * @property int|null $value0 + * @property int|null $value1 + * @property int|null $value2 + * @property int|null $value3 + * @property int|null $value4 + * @property int|null $value5 + * @property int|null $socket0 + * @property int|null $socket1 + * @property int|null $socket2 + * @property int|null $socket3 + * @property int|null $socket4 + * @property int|null $socket5 + * @property int $specular + * @property int $socket_pct + * @property int $addon_type + * @property-read \App\Models\Game\Player\RefineProto|null $refineSet + * + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto query() + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereAddonType($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereAntiflag($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereApplytype0($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereApplytype1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereApplytype2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereApplyvalue0($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereApplyvalue1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereApplyvalue2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereFlag($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereGold($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereImmuneflag($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereLimittype0($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereLimittype1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereLimitvalue0($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereLimitvalue1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereLocaleName($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereMagicPct($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereRefineSet($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereRefineSet2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereRefinedVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereShopBuyPrice($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSize($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSocket0($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSocket1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSocket2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSocket3($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSocket4($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSocket5($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSocketPct($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSpecular($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereSubtype($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereType($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereValue0($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereValue1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereValue2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereValue3($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereValue4($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereValue5($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereWearflag($value) + * @method static \Illuminate\Database\Eloquent\Builder|ItemProto whereWeight($value) + * + * @mixin \Eloquent + */ class ItemProto extends Model { /** @@ -51,6 +149,30 @@ class ItemProto extends Model * @var array */ protected $casts = [ - + 'type' => ItemTypesEnum::class, + 'limittype0' => LimitTypesEnum::class, + 'limittype1' => LimitTypesEnum::class, + 'applytype0' => ApplyTypesEnum::class, + 'applytype1' => ApplyTypesEnum::class, + 'applytype2' => ApplyTypesEnum::class, ]; + + public function refineSet(): BelongsTo + { + return $this->belongsTo(RefineProto::class, 'refine_set'); + } + + public function sellers(): BelongsToMany + { + return $this->belongsToMany( + Shop::class, + ShopItem::class, + 'item_vnum', + 'shop_vnum', + 'vnum', + 'vnum' + ) + ->where('npc_vnum', '!=', 0) + ->withPivot('count'); + } } diff --git a/app/Models/Game/Player/Land.php b/app/Models/Game/Player/Land.php index bc9f15e..01bf7b5 100644 --- a/app/Models/Game/Player/Land.php +++ b/app/Models/Game/Player/Land.php @@ -4,6 +4,32 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +/** + * @property int $id + * @property int $map_index + * @property int $x + * @property int $y + * @property int $width + * @property int $height + * @property int|null $guild_id + * @property int $guild_level_limit + * @property int $price + * @property string $enable + * @method static \Illuminate\Database\Eloquent\Builder|Land newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Land newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Land query() + * @method static \Illuminate\Database\Eloquent\Builder|Land whereEnable($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereGuildId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereGuildLevelLimit($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereHeight($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereMapIndex($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land wherePrice($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereWidth($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereX($value) + * @method static \Illuminate\Database\Eloquent\Builder|Land whereY($value) + * @mixin \Eloquent + */ class Land extends Model { /** diff --git a/app/Models/Game/Player/MobProto.php b/app/Models/Game/Player/MobProto.php new file mode 100644 index 0000000..8b4d695 --- /dev/null +++ b/app/Models/Game/Player/MobProto.php @@ -0,0 +1,47 @@ + + */ + protected $fillable = [ + 'name', + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var array + */ + protected $hidden = [ + + ]; +} diff --git a/app/Models/Game/Player/ObjectProto.php b/app/Models/Game/Player/ObjectProto.php index b0a8718..fc65f48 100644 --- a/app/Models/Game/Player/ObjectProto.php +++ b/app/Models/Game/Player/ObjectProto.php @@ -4,6 +4,40 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +/** + * @property int $vnum + * @property string $name + * @property int $price + * @property string $materials + * @property int $upgrade_vnum + * @property int $upgrade_limit_time + * @property int $life + * @property int $reg_1 + * @property int $reg_2 + * @property int $reg_3 + * @property int $reg_4 + * @property int $npc + * @property int $group_vnum + * @property int $dependent_group + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto query() + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereDependentGroup($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereGroupVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereLife($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereMaterials($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereNpc($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto wherePrice($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereReg1($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereReg2($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereReg3($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereReg4($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereUpgradeLimitTime($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereUpgradeVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|ObjectProto whereVnum($value) + * @mixin \Eloquent + */ class ObjectProto extends Model { /** diff --git a/app/Models/Game/Player/Player.php b/app/Models/Game/Player/Player.php index 37e48a0..9d2ed7e 100644 --- a/app/Models/Game/Player/Player.php +++ b/app/Models/Game/Player/Player.php @@ -9,6 +9,113 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\HasOne; +/** + * @property int $id + * @property int $account_id + * @property string $name + * @property CharacterJobEnum $job + * @property int $voice + * @property int $dir + * @property int $x + * @property int $y + * @property int $z + * @property int $map_index + * @property int $exit_x + * @property int $exit_y + * @property int $exit_map_index + * @property int $hp + * @property int $mp + * @property int $stamina + * @property int $random_hp + * @property int $random_sp + * @property int $playtime + * @property int $level + * @property int $level_step + * @property int $st + * @property int $ht + * @property int $dx + * @property int $iq + * @property int $exp + * @property int $gold + * @property int $stat_point + * @property int $skill_point + * @property string|null $quickslot + * @property string|null $ip + * @property int $part_main + * @property int $part_base + * @property int $part_hair + * @property int $part_sash + * @property int $skill_group + * @property string|null $skill_level + * @property int $alignment + * @property string $last_play + * @property int $change_name + * @property int $sub_skill_point + * @property int $stat_reset_count + * @property int $horse_hp + * @property int $horse_stamina + * @property int $horse_level + * @property int $horse_hp_droptime + * @property int $horse_riding + * @property int $horse_skill_point + * @property int $bank_value + * @property-read Account $account + * @property-read HighscoreCache|null $highscore + * @property-read \App\Models\Game\Player\PlayerIndex $index + * @method static \Illuminate\Database\Eloquent\Builder|Player newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Player newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Player query() + * @method static \Illuminate\Database\Eloquent\Builder|Player whereAccountId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereAlignment($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereBankValue($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereChangeName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereDir($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereDx($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereExitMapIndex($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereExitX($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereExitY($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereExp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereGold($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHorseHp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHorseHpDroptime($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHorseLevel($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHorseRiding($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHorseSkillPoint($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHorseStamina($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereHt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereIp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereIq($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereJob($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereLastPlay($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereLevel($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereLevelStep($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereMapIndex($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereMp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player wherePartBase($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player wherePartHair($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player wherePartMain($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player wherePartSash($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player wherePlaytime($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereQuickslot($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereRandomHp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereRandomSp($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereSkillGroup($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereSkillLevel($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereSkillPoint($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereSt($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereStamina($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereStatPoint($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereStatResetCount($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereSubSkillPoint($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereVoice($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereX($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereY($value) + * @method static \Illuminate\Database\Eloquent\Builder|Player whereZ($value) + * @mixin \Eloquent + */ class Player extends Model { /** diff --git a/app/Models/Game/Player/PlayerIndex.php b/app/Models/Game/Player/PlayerIndex.php index cdf8b92..6f6e092 100644 --- a/app/Models/Game/Player/PlayerIndex.php +++ b/app/Models/Game/Player/PlayerIndex.php @@ -7,6 +7,25 @@ use App\Models\Enums\EmpireEnum; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; +/** + * @property int $id + * @property int|null $pid1 + * @property int|null $pid2 + * @property int|null $pid3 + * @property int|null $pid4 + * @property EmpireEnum $empire + * @property-read Account $account + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex query() + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex whereEmpire($value) + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex wherePid1($value) + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex wherePid2($value) + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex wherePid3($value) + * @method static \Illuminate\Database\Eloquent\Builder|PlayerIndex wherePid4($value) + * @mixin \Eloquent + */ class PlayerIndex extends Model { /** diff --git a/app/Models/Game/Player/RefineProto.php b/app/Models/Game/Player/RefineProto.php index 34c0dee..c387ee9 100644 --- a/app/Models/Game/Player/RefineProto.php +++ b/app/Models/Game/Player/RefineProto.php @@ -3,7 +3,49 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +use Illuminate\Database\Eloquent\Relations\BelongsTo; +/** + * @property int $id + * @property int $vnum0 + * @property int $count0 + * @property int $vnum1 + * @property int $count1 + * @property int $vnum2 + * @property int $count2 + * @property int $vnum3 + * @property int $count3 + * @property int $vnum4 + * @property int $count4 + * @property int $cost + * @property int $src_vnum + * @property int $result_vnum + * @property int $prob + * @property-read \App\Models\Game\Player\ItemProto|null $item0 + * @property-read \App\Models\Game\Player\ItemProto|null $item1 + * @property-read \App\Models\Game\Player\ItemProto|null $item2 + * @property-read \App\Models\Game\Player\ItemProto|null $item3 + * @property-read \App\Models\Game\Player\ItemProto|null $item4 + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto query() + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereCost($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereCount0($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereCount1($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereCount2($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereCount3($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereCount4($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereProb($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereResultVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereSrcVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereVnum0($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereVnum1($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereVnum2($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereVnum3($value) + * @method static \Illuminate\Database\Eloquent\Builder|RefineProto whereVnum4($value) + * @mixin \Eloquent + */ class RefineProto extends Model { /** @@ -53,4 +95,29 @@ class RefineProto extends Model protected $casts = [ ]; + + public function item0(): BelongsTo + { + return $this->belongsTo(ItemProto::class, 'vnum0'); + } + + public function item1(): BelongsTo + { + return $this->belongsTo(ItemProto::class, 'vnum1'); + } + + public function item2(): BelongsTo + { + return $this->belongsTo(ItemProto::class, 'vnum2'); + } + + public function item3(): BelongsTo + { + return $this->belongsTo(ItemProto::class, 'vnum3'); + } + + public function item4(): BelongsTo + { + return $this->belongsTo(ItemProto::class, 'vnum4'); + } } diff --git a/app/Models/Game/Player/Shop.php b/app/Models/Game/Player/Shop.php index 065c21a..8f188c5 100644 --- a/app/Models/Game/Player/Shop.php +++ b/app/Models/Game/Player/Shop.php @@ -3,7 +3,22 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +use Illuminate\Database\Eloquent\Relations\BelongsTo; +/** + * @property int $vnum + * @property string $name + * @property int $npc_vnum + * + * @method static \Illuminate\Database\Eloquent\Builder|Shop newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Shop newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|Shop query() + * @method static \Illuminate\Database\Eloquent\Builder|Shop whereName($value) + * @method static \Illuminate\Database\Eloquent\Builder|Shop whereNpcVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|Shop whereVnum($value) + * + * @mixin \Eloquent + */ class Shop extends Model { /** @@ -53,4 +68,9 @@ class Shop extends Model protected $casts = [ ]; + + public function mob(): BelongsTo + { + return $this->belongsTo(MobProto::class, 'npc_vnum', 'vnum'); + } } diff --git a/app/Models/Game/Player/ShopItem.php b/app/Models/Game/Player/ShopItem.php index 8a989af..973c222 100644 --- a/app/Models/Game/Player/ShopItem.php +++ b/app/Models/Game/Player/ShopItem.php @@ -4,6 +4,18 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +/** + * @property int $shop_vnum + * @property int $item_vnum + * @property int $count + * @method static \Illuminate\Database\Eloquent\Builder|ShopItem newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ShopItem newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|ShopItem query() + * @method static \Illuminate\Database\Eloquent\Builder|ShopItem whereCount($value) + * @method static \Illuminate\Database\Eloquent\Builder|ShopItem whereItemVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|ShopItem whereShopVnum($value) + * @mixin \Eloquent + */ class ShopItem extends Model { /** diff --git a/app/Models/Game/Player/SkillProto.php b/app/Models/Game/Player/SkillProto.php index 9d36ee4..ec9be0a 100644 --- a/app/Models/Game/Player/SkillProto.php +++ b/app/Models/Game/Player/SkillProto.php @@ -4,6 +4,74 @@ namespace App\Models\Game\Player; use Illuminate\Database\Eloquent\Model; +/** + * @property int $dwVnum + * @property string $szName + * @property int $bType + * @property int $bLevelStep + * @property int $bMaxLevel + * @property int $bLevelLimit + * @property string $szPointOn + * @property string $szPointPoly + * @property string $szSPCostPoly + * @property string $szDurationPoly + * @property string $szDurationSPCostPoly + * @property string $szCooldownPoly + * @property string $szMasterBonusPoly + * @property string $szAttackGradePoly + * @property string $setFlag + * @property string|null $setAffectFlag + * @property string $szPointOn2 + * @property string $szPointPoly2 + * @property string $szDurationPoly2 + * @property string|null $setAffectFlag2 + * @property string $szPointOn3 + * @property string $szPointPoly3 + * @property string $szDurationPoly3 + * @property string $szGrandMasterAddSPCostPoly + * @property int $prerequisiteSkillVnum + * @property int $prerequisiteSkillLevel + * @property string|null $eSkillType + * @property int $iMaxHit + * @property string $szSplashAroundDamageAdjustPoly + * @property int $dwTargetRange + * @property int $dwSplashRange + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto query() + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereBLevelLimit($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereBLevelStep($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereBMaxLevel($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereBType($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereDwSplashRange($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereDwTargetRange($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereDwVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereESkillType($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereIMaxHit($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto wherePrerequisiteSkillLevel($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto wherePrerequisiteSkillVnum($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSetAffectFlag($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSetAffectFlag2($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSetFlag($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzAttackGradePoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzCooldownPoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzDurationPoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzDurationPoly2($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzDurationPoly3($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzDurationSPCostPoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzGrandMasterAddSPCostPoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzMasterBonusPoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzName($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzPointOn($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzPointOn2($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzPointOn3($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzPointPoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzPointPoly2($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzPointPoly3($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzSPCostPoly($value) + * @method static \Illuminate\Database\Eloquent\Builder|SkillProto whereSzSplashAroundDamageAdjustPoly($value) + * @mixin \Eloquent + */ class SkillProto extends Model { /** diff --git a/app/Models/Mall/MallCategory.php b/app/Models/Mall/MallCategory.php index 880f95a..1ad7928 100644 --- a/app/Models/Mall/MallCategory.php +++ b/app/Models/Mall/MallCategory.php @@ -5,6 +5,18 @@ namespace App\Models\Mall; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; +/** + * @property int $id + * @property string $name + * @property-read \Illuminate\Database\Eloquent\Collection $items + * @property-read int|null $items_count + * @method static \Illuminate\Database\Eloquent\Builder|MallCategory newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|MallCategory newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|MallCategory query() + * @method static \Illuminate\Database\Eloquent\Builder|MallCategory whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallCategory whereName($value) + * @mixin \Eloquent + */ class MallCategory extends Model { /** diff --git a/app/Models/Mall/MallItem.php b/app/Models/Mall/MallItem.php index 07a9aac..628ff3b 100644 --- a/app/Models/Mall/MallItem.php +++ b/app/Models/Mall/MallItem.php @@ -8,6 +8,33 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasOne; use Illuminate\Support\Facades\Auth; +/** + * @property int $id + * @property int $vnum + * @property int $category_id + * @property int|null $old_price + * @property int $price + * @property MallItemPricingEnum $pricing + * @property int $quantity + * @property string|null $image + * @property string|null $description + * @property string|null $other + * @property-read ItemProto|null $proto + * @method static \Illuminate\Database\Eloquent\Builder|MallItem newModelQuery() + * @method static \Illuminate\Database\Eloquent\Builder|MallItem newQuery() + * @method static \Illuminate\Database\Eloquent\Builder|MallItem query() + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereCategoryId($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereImage($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereOldPrice($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereOther($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem wherePrice($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem wherePricing($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereQuantity($value) + * @method static \Illuminate\Database\Eloquent\Builder|MallItem whereVnum($value) + * @mixin \Eloquent + */ class MallItem extends Model { /** diff --git a/bun.lock b/bun.lock new file mode 100644 index 0000000..484507f --- /dev/null +++ b/bun.lock @@ -0,0 +1,97 @@ +{ + "lockfileVersion": 1, + "workspaces": { + "": { + "devDependencies": { + "axios": "^1.1.2", + "laravel-vite-plugin": "^0.7.5", + "vite": "^4.0.0", + }, + }, + }, + "packages": { + "@esbuild/android-arm": ["@esbuild/android-arm@0.18.15", "", { "os": "android", "cpu": "arm" }, "sha512-wlkQBWb79/jeEEoRmrxt/yhn5T1lU236OCNpnfRzaCJHZ/5gf82uYx1qmADTBWE0AR/v7FiozE1auk2riyQd3w=="], + + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.18.15", "", { "os": "android", "cpu": "arm64" }, "sha512-NI/gnWcMl2kXt1HJKOn2H69SYn4YNheKo6NZt1hyfKWdMbaGadxjZIkcj4Gjk/WPxnbFXs9/3HjGHaknCqjrww=="], + + "@esbuild/android-x64": ["@esbuild/android-x64@0.18.15", "", { "os": "android", "cpu": "x64" }, "sha512-FM9NQamSaEm/IZIhegF76aiLnng1kEsZl2eve/emxDeReVfRuRNmvT28l6hoFD9TsCxpK+i4v8LPpEj74T7yjA=="], + + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.18.15", "", { "os": "darwin", "cpu": "arm64" }, "sha512-XmrFwEOYauKte9QjS6hz60FpOCnw4zaPAb7XV7O4lx1r39XjJhTN7ZpXqJh4sN6q60zbP6QwAVVA8N/wUyBH/w=="], + + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.18.15", "", { "os": "darwin", "cpu": "x64" }, "sha512-bMqBmpw1e//7Fh5GLetSZaeo9zSC4/CMtrVFdj+bqKPGJuKyfNJ5Nf2m3LknKZTS+Q4oyPiON+v3eaJ59sLB5A=="], + + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.18.15", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-LoTK5N3bOmNI9zVLCeTgnk5Rk0WdUTrr9dyDAQGVMrNTh9EAPuNwSTCgaKOKiDpverOa0htPcO9NwslSE5xuLA=="], + + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.18.15", "", { "os": "freebsd", "cpu": "x64" }, "sha512-62jX5n30VzgrjAjOk5orYeHFq6sqjvsIj1QesXvn5OZtdt5Gdj0vUNJy9NIpjfdNdqr76jjtzBJKf+h2uzYuTQ=="], + + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.18.15", "", { "os": "linux", "cpu": "arm" }, "sha512-dT4URUv6ir45ZkBqhwZwyFV6cH61k8MttIwhThp2BGiVtagYvCToF+Bggyx2VI57RG4Fbt21f9TmXaYx0DeUJg=="], + + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.18.15", "", { "os": "linux", "cpu": "arm64" }, "sha512-BWncQeuWDgYv0jTNzJjaNgleduV4tMbQjmk/zpPh/lUdMcNEAxy+jvneDJ6RJkrqloG7tB9S9rCrtfk/kuplsQ=="], + + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.18.15", "", { "os": "linux", "cpu": "ia32" }, "sha512-JPXORvgHRHITqfms1dWT/GbEY89u848dC08o0yK3fNskhp0t2TuNUnsrrSgOdH28ceb1hJuwyr8R/1RnyPwocw=="], + + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.18.15", "", { "os": "linux", "cpu": "none" }, "sha512-kArPI0DopjJCEplsVj/H+2Qgzz7vdFSacHNsgoAKpPS6W/Ndh8Oe24HRDQ5QCu4jHgN6XOtfFfLpRx3TXv/mEg=="], + + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.18.15", "", { "os": "linux", "cpu": "none" }, "sha512-b/tmngUfO02E00c1XnNTw/0DmloKjb6XQeqxaYuzGwHe0fHVgx5/D6CWi+XH1DvkszjBUkK9BX7n1ARTOst59w=="], + + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.18.15", "", { "os": "linux", "cpu": "ppc64" }, "sha512-KXPY69MWw79QJkyvUYb2ex/OgnN/8N/Aw5UDPlgoRtoEfcBqfeLodPr42UojV3NdkoO4u10NXQdamWm1YEzSKw=="], + + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.18.15", "", { "os": "linux", "cpu": "none" }, "sha512-komK3NEAeeGRnvFEjX1SfVg6EmkfIi5aKzevdvJqMydYr9N+pRQK0PGJXk+bhoPZwOUgLO4l99FZmLGk/L1jWg=="], + + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.18.15", "", { "os": "linux", "cpu": "s390x" }, "sha512-632T5Ts6gQ2WiMLWRRyeflPAm44u2E/s/TJvn+BP6M5mnHSk93cieaypj3VSMYO2ePTCRqAFXtuYi1yv8uZJNA=="], + + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.18.15", "", { "os": "linux", "cpu": "x64" }, "sha512-MsHtX0NgvRHsoOtYkuxyk4Vkmvk3PLRWfA4okK7c+6dT0Fu4SUqXAr9y4Q3d8vUf1VWWb6YutpL4XNe400iQ1g=="], + + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.18.15", "", { "os": "none", "cpu": "x64" }, "sha512-djST6s+jQiwxMIVQ5rlt24JFIAr4uwUnzceuFL7BQT4CbrRtqBPueS4GjXSiIpmwVri1Icj/9pFRJ7/aScvT+A=="], + + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.18.15", "", { "os": "openbsd", "cpu": "x64" }, "sha512-naeRhUIvhsgeounjkF5mvrNAVMGAm6EJWiabskeE5yOeBbLp7T89tAEw0j5Jm/CZAwyLe3c67zyCWH6fsBLCpw=="], + + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.18.15", "", { "os": "sunos", "cpu": "x64" }, "sha512-qkT2+WxyKbNIKV1AEhI8QiSIgTHMcRctzSaa/I3kVgMS5dl3fOeoqkb7pW76KwxHoriImhx7Mg3TwN/auMDsyQ=="], + + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.18.15", "", { "os": "win32", "cpu": "arm64" }, "sha512-HC4/feP+pB2Vb+cMPUjAnFyERs+HJN7E6KaeBlFdBv799MhD+aPJlfi/yk36SED58J9TPwI8MAcVpJgej4ud0A=="], + + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.18.15", "", { "os": "win32", "cpu": "ia32" }, "sha512-ovjwoRXI+gf52EVF60u9sSDj7myPixPxqzD5CmkEUmvs+W9Xd0iqISVBQn8xcx4ciIaIVlWCuTbYDOXOnOL44Q=="], + + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.18.15", "", { "os": "win32", "cpu": "x64" }, "sha512-imUxH9a3WJARyAvrG7srLyiK73XdX83NXQkjKvQ+7vPh3ZxoLrzvPkQKKw2DwZ+RV2ZB6vBfNHP8XScAmQC3aA=="], + + "asynckit": ["asynckit@0.4.0", "", {}, "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="], + + "axios": ["axios@1.4.0", "", { "dependencies": { "follow-redirects": "^1.15.0", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA=="], + + "combined-stream": ["combined-stream@1.0.8", "", { "dependencies": { "delayed-stream": "~1.0.0" } }, "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="], + + "delayed-stream": ["delayed-stream@1.0.0", "", {}, "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="], + + "esbuild": ["esbuild@0.18.15", "", { "optionalDependencies": { "@esbuild/android-arm": "0.18.15", "@esbuild/android-arm64": "0.18.15", "@esbuild/android-x64": "0.18.15", "@esbuild/darwin-arm64": "0.18.15", "@esbuild/darwin-x64": "0.18.15", "@esbuild/freebsd-arm64": "0.18.15", "@esbuild/freebsd-x64": "0.18.15", "@esbuild/linux-arm": "0.18.15", "@esbuild/linux-arm64": "0.18.15", "@esbuild/linux-ia32": "0.18.15", "@esbuild/linux-loong64": "0.18.15", "@esbuild/linux-mips64el": "0.18.15", "@esbuild/linux-ppc64": "0.18.15", "@esbuild/linux-riscv64": "0.18.15", "@esbuild/linux-s390x": "0.18.15", "@esbuild/linux-x64": "0.18.15", "@esbuild/netbsd-x64": "0.18.15", "@esbuild/openbsd-x64": "0.18.15", "@esbuild/sunos-x64": "0.18.15", "@esbuild/win32-arm64": "0.18.15", "@esbuild/win32-ia32": "0.18.15", "@esbuild/win32-x64": "0.18.15" }, "bin": "bin/esbuild" }, "sha512-3WOOLhrvuTGPRzQPU6waSDWrDTnQriia72McWcn6UCi43GhCHrXH4S59hKMeez+IITmdUuUyvbU9JIp+t3xlPQ=="], + + "follow-redirects": ["follow-redirects@1.15.2", "", {}, "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="], + + "form-data": ["form-data@4.0.0", "", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }, "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww=="], + + "fsevents": ["fsevents@2.3.2", "", { "os": "darwin" }, "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="], + + "laravel-vite-plugin": ["laravel-vite-plugin@0.7.8", "", { "dependencies": { "picocolors": "^1.0.0", "vite-plugin-full-reload": "^1.0.5" }, "peerDependencies": { "vite": "^3.0.0 || ^4.0.0" } }, "sha512-HWYqpQYHR3kEQ1LsHX7gHJoNNf0bz5z5mDaHBLzS+PGLCTmYqlU5/SZyeEgObV7z7bC/cnStYcY9H1DI1D5Udg=="], + + "mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="], + + "mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="], + + "nanoid": ["nanoid@3.3.6", "", { "bin": "bin/nanoid.cjs" }, "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="], + + "picocolors": ["picocolors@1.0.0", "", {}, "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="], + + "picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "postcss": ["postcss@8.4.27", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ=="], + + "proxy-from-env": ["proxy-from-env@1.1.0", "", {}, "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="], + + "rollup": ["rollup@3.26.3", "", { "optionalDependencies": { "fsevents": "~2.3.2" }, "bin": "dist/bin/rollup" }, "sha512-7Tin0C8l86TkpcMtXvQu6saWH93nhG3dGQ1/+l5V2TDMceTxO7kDiK6GzbfLWNNxqJXm591PcEZUozZm51ogwQ=="], + + "source-map-js": ["source-map-js@1.0.2", "", {}, "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="], + + "vite": ["vite@4.4.6", "", { "dependencies": { "esbuild": "^0.18.10", "postcss": "^8.4.26", "rollup": "^3.25.2" }, "optionalDependencies": { "fsevents": "~2.3.2" }, "peerDependencies": { "@types/node": ">= 14", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" }, "optionalPeers": ["@types/node", "less", "lightningcss", "sass", "stylus", "sugarss", "terser"], "bin": "bin/vite.js" }, "sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A=="], + + "vite-plugin-full-reload": ["vite-plugin-full-reload@1.0.5", "", { "dependencies": { "picocolors": "^1.0.0", "picomatch": "^2.3.1" }, "peerDependencies": { "vite": "^2 || ^3 || ^4" } }, "sha512-kVZFDFWr0DxiHn6MuDVTQf7gnWIdETGlZh0hvTiMXzRN80vgF4PKbONSq8U1d0WtHsKaFODTQgJeakLacoPZEQ=="], + } +} diff --git a/composer.json b/composer.json index 5df9129..d92feba 100644 --- a/composer.json +++ b/composer.json @@ -10,12 +10,13 @@ "ext-simplexml": "*", "guzzlehttp/guzzle": "^7.2", "laravel/framework": "^11.31", - "laravel/octane": "^2.6", + "laravel/octane": "^2.12", "laravel/sanctum": "^4.0", + "laravel/scout": "^10.19", "laravel/tinker": "^2.8" }, "require-dev": { - "barryvdh/laravel-ide-helper": "^3.5", + "barryvdh/laravel-ide-helper": "^3.6", "fakerphp/faker": "^1.9.1", "kitloong/laravel-migrations-generator": "^7.0", "laravel/pint": "^1.0", diff --git a/composer.lock b/composer.lock index 633d1c6..0c7845b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,29 +4,29 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "34ec1655d5daad80c8054955b0117451", + "content-hash": "b66c418f91c106538c00a8554609ae88", "packages": [ { "name": "brick/math", - "version": "0.12.3", + "version": "0.14.0", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba" + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba", + "url": "https://api.github.com/repos/brick/math/zipball/113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", "shasum": "" }, "require": { - "php": "^8.1" + "php": "^8.2" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^10.1", - "vimeo/psalm": "6.8.8" + "phpstan/phpstan": "2.1.22", + "phpunit/phpunit": "^11.5" }, "type": "library", "autoload": { @@ -56,7 +56,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.12.3" + "source": "https://github.com/brick/math/tree/0.14.0" }, "funding": [ { @@ -64,7 +64,7 @@ "type": "github" } ], - "time": "2025-02-28T13:11:00+00:00" + "time": "2025-08-29T12:40:03+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -1143,20 +1143,20 @@ }, { "name": "laravel/framework", - "version": "v11.45.2", + "version": "v11.46.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "d134bf11e2208c0c5bd488cf19e612ca176b820a" + "reference": "2c6d85f22d08123ad45aa3a6726b16f06e68eecd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/d134bf11e2208c0c5bd488cf19e612ca176b820a", - "reference": "d134bf11e2208c0c5bd488cf19e612ca176b820a", + "url": "https://api.github.com/repos/laravel/framework/zipball/2c6d85f22d08123ad45aa3a6726b16f06e68eecd", + "reference": "2c6d85f22d08123ad45aa3a6726b16f06e68eecd", "shasum": "" }, "require": { - "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12|^0.13|^0.14", "composer-runtime-api": "^2.2", "doctrine/inflector": "^2.0.5", "dragonmantank/cron-expression": "^3.4", @@ -1260,7 +1260,7 @@ "league/flysystem-read-only": "^3.25.1", "league/flysystem-sftp-v3": "^3.25.1", "mockery/mockery": "^1.6.10", - "orchestra/testbench-core": "^9.16.0", + "orchestra/testbench-core": "^9.16.1", "pda/pheanstalk": "^5.0.6", "php-http/discovery": "^1.15", "phpstan/phpstan": "^2.0", @@ -1354,7 +1354,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-08-13T20:28:00+00:00" + "time": "2025-09-08T21:54:34+00:00" }, { "name": "laravel/octane", @@ -1569,6 +1569,87 @@ }, "time": "2025-07-09T19:45:24+00:00" }, + { + "name": "laravel/scout", + "version": "v10.19.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/scout.git", + "reference": "996b2a8b5ccc583e7df667c8aac924a46bc8bdd3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/scout/zipball/996b2a8b5ccc583e7df667c8aac924a46bc8bdd3", + "reference": "996b2a8b5ccc583e7df667c8aac924a46bc8bdd3", + "shasum": "" + }, + "require": { + "illuminate/bus": "^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0", + "illuminate/database": "^9.0|^10.0|^11.0|^12.0", + "illuminate/http": "^9.0|^10.0|^11.0|^12.0", + "illuminate/pagination": "^9.0|^10.0|^11.0|^12.0", + "illuminate/queue": "^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^9.0|^10.0|^11.0|^12.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0" + }, + "conflict": { + "algolia/algoliasearch-client-php": "<3.2.0|>=5.0.0" + }, + "require-dev": { + "algolia/algoliasearch-client-php": "^3.2|^4.0", + "meilisearch/meilisearch-php": "^1.0", + "mockery/mockery": "^1.0", + "orchestra/testbench": "^7.31|^8.11|^9.0|^10.0", + "php-http/guzzle7-adapter": "^1.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.3|^10.4|^11.5", + "typesense/typesense-php": "^4.9.3" + }, + "suggest": { + "algolia/algoliasearch-client-php": "Required to use the Algolia engine (^3.2).", + "meilisearch/meilisearch-php": "Required to use the Meilisearch engine (^1.0).", + "typesense/typesense-php": "Required to use the Typesense engine (^4.9)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Scout\\ScoutServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Scout\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Scout provides a driver based solution to searching your Eloquent models.", + "keywords": [ + "algolia", + "laravel", + "search" + ], + "support": { + "issues": "https://github.com/laravel/scout/issues", + "source": "https://github.com/laravel/scout" + }, + "time": "2025-08-26T14:24:24+00:00" + }, { "name": "laravel/serializable-closure", "version": "v2.0.4", @@ -2352,16 +2433,16 @@ }, { "name": "nesbot/carbon", - "version": "3.10.2", + "version": "3.10.3", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon.git", - "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24" + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24", - "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", "shasum": "" }, "require": { @@ -2379,13 +2460,13 @@ "require-dev": { "doctrine/dbal": "^3.6.3 || ^4.0", "doctrine/orm": "^2.15.2 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.75.0", + "friendsofphp/php-cs-fixer": "^v3.87.1", "kylekatarnls/multi-tester": "^2.5.3", "phpmd/phpmd": "^2.15.0", "phpstan/extension-installer": "^1.4.3", - "phpstan/phpstan": "^2.1.17", - "phpunit/phpunit": "^10.5.46", - "squizlabs/php_codesniffer": "^3.13.0" + "phpstan/phpstan": "^2.1.22", + "phpunit/phpunit": "^10.5.53", + "squizlabs/php_codesniffer": "^3.13.4" }, "bin": [ "bin/carbon" @@ -2453,7 +2534,7 @@ "type": "tidelift" } ], - "time": "2025-08-02T09:36:06+00:00" + "time": "2025-09-06T13:39:36+00:00" }, { "name": "nette/schema", @@ -3438,20 +3519,20 @@ }, { "name": "ramsey/uuid", - "version": "4.9.0", + "version": "4.9.1", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0" + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0", - "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440", + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -3510,9 +3591,9 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.9.0" + "source": "https://github.com/ramsey/uuid/tree/4.9.1" }, - "time": "2025-06-25T14:20:11+00:00" + "time": "2025-09-04T20:59:21+00:00" }, { "name": "symfony/clock", @@ -7835,16 +7916,16 @@ }, { "name": "sebastian/comparator", - "version": "5.0.3", + "version": "5.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e8e53097718d2b53cfb2aa859b06a41abf58c62e", + "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e", "shasum": "" }, "require": { @@ -7900,15 +7981,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3" + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.4" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" } ], - "time": "2024-10-18T14:56:07+00:00" + "time": "2025-09-07T05:25:07+00:00" }, { "name": "sebastian/complexity", diff --git a/config/filesystems.php b/config/filesystems.php index ad52f72..64f0fc3 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -71,6 +71,7 @@ return [ 'links' => [ public_path('patch-data') => storage_path('app/public/patch-data'), + public_path('item-icon') => storage_path('app/public/item-icon'), ], ]; diff --git a/config/scout.php b/config/scout.php new file mode 100644 index 0000000..e8a3bdd --- /dev/null +++ b/config/scout.php @@ -0,0 +1,209 @@ + env('SCOUT_DRIVER', 'algolia'), + + /* + |-------------------------------------------------------------------------- + | Index Prefix + |-------------------------------------------------------------------------- + | + | Here you may specify a prefix that will be applied to all search index + | names used by Scout. This prefix may be useful if you have multiple + | "tenants" or applications sharing the same search infrastructure. + | + */ + + 'prefix' => env('SCOUT_PREFIX', ''), + + /* + |-------------------------------------------------------------------------- + | Queue Data Syncing + |-------------------------------------------------------------------------- + | + | This option allows you to control if the operations that sync your data + | with your search engines are queued. When this is set to "true" then + | all automatic data syncing will get queued for better performance. + | + */ + + 'queue' => env('SCOUT_QUEUE', false), + + /* + |-------------------------------------------------------------------------- + | Database Transactions + |-------------------------------------------------------------------------- + | + | This configuration option determines if your data will only be synced + | with your search indexes after every open database transaction has + | been committed, thus preventing any discarded data from syncing. + | + */ + + 'after_commit' => false, + + /* + |-------------------------------------------------------------------------- + | Chunk Sizes + |-------------------------------------------------------------------------- + | + | These options allow you to control the maximum chunk size when you are + | mass importing data into the search engine. This allows you to fine + | tune each of these chunk sizes based on the power of the servers. + | + */ + + 'chunk' => [ + 'searchable' => 500, + 'unsearchable' => 500, + ], + + /* + |-------------------------------------------------------------------------- + | Soft Deletes + |-------------------------------------------------------------------------- + | + | This option allows to control whether to keep soft deleted records in + | the search indexes. Maintaining soft deleted records can be useful + | if your application still needs to search for the records later. + | + */ + + 'soft_delete' => false, + + /* + |-------------------------------------------------------------------------- + | Identify User + |-------------------------------------------------------------------------- + | + | This option allows you to control whether to notify the search engine + | of the user performing the search. This is sometimes useful if the + | engine supports any analytics based on this application's users. + | + | Supported engines: "algolia" + | + */ + + 'identify' => env('SCOUT_IDENTIFY', false), + + /* + |-------------------------------------------------------------------------- + | Algolia Configuration + |-------------------------------------------------------------------------- + | + | Here you may configure your Algolia settings. Algolia is a cloud hosted + | search engine which works great with Scout out of the box. Just plug + | in your application ID and admin API key to get started searching. + | + */ + + 'algolia' => [ + 'id' => env('ALGOLIA_APP_ID', ''), + 'secret' => env('ALGOLIA_SECRET', ''), + 'index-settings' => [ + // 'users' => [ + // 'searchableAttributes' => ['id', 'name', 'email'], + // 'attributesForFaceting'=> ['filterOnly(email)'], + // ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Meilisearch Configuration + |-------------------------------------------------------------------------- + | + | Here you may configure your Meilisearch settings. Meilisearch is an open + | source search engine with minimal configuration. Below, you can state + | the host and key information for your own Meilisearch installation. + | + | See: https://www.meilisearch.com/docs/learn/configuration/instance_options#all-instance-options + | + */ + + 'meilisearch' => [ + 'host' => env('MEILISEARCH_HOST', 'http://localhost:7700'), + 'key' => env('MEILISEARCH_KEY'), + 'index-settings' => [ + // 'users' => [ + // 'filterableAttributes'=> ['id', 'name', 'email'], + // ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Typesense Configuration + |-------------------------------------------------------------------------- + | + | Here you may configure your Typesense settings. Typesense is an open + | source search engine using minimal configuration. Below, you will + | state the host, key, and schema configuration for the instance. + | + */ + + 'typesense' => [ + 'client-settings' => [ + 'api_key' => env('TYPESENSE_API_KEY', 'xyz'), + 'nodes' => [ + [ + 'host' => env('TYPESENSE_HOST', 'localhost'), + 'port' => env('TYPESENSE_PORT', '8108'), + 'path' => env('TYPESENSE_PATH', ''), + 'protocol' => env('TYPESENSE_PROTOCOL', 'http'), + ], + ], + 'nearest_node' => [ + 'host' => env('TYPESENSE_HOST', 'localhost'), + 'port' => env('TYPESENSE_PORT', '8108'), + 'path' => env('TYPESENSE_PATH', ''), + 'protocol' => env('TYPESENSE_PROTOCOL', 'http'), + ], + 'connection_timeout_seconds' => env('TYPESENSE_CONNECTION_TIMEOUT_SECONDS', 2), + 'healthcheck_interval_seconds' => env('TYPESENSE_HEALTHCHECK_INTERVAL_SECONDS', 30), + 'num_retries' => env('TYPESENSE_NUM_RETRIES', 3), + 'retry_interval_seconds' => env('TYPESENSE_RETRY_INTERVAL_SECONDS', 1), + ], + // 'max_total_results' => env('TYPESENSE_MAX_TOTAL_RESULTS', 1000), + 'model-settings' => [ + // User::class => [ + // 'collection-schema' => [ + // 'fields' => [ + // [ + // 'name' => 'id', + // 'type' => 'string', + // ], + // [ + // 'name' => 'name', + // 'type' => 'string', + // ], + // [ + // 'name' => 'created_at', + // 'type' => 'int64', + // ], + // ], + // 'default_sorting_field' => 'created_at', + // ], + // 'search-parameters' => [ + // 'query_by' => 'name' + // ], + // ], + ], + ], + +]; diff --git a/database/migrations/2025_09_13_100336_create_pets_table.php b/database/migrations/2025_09_13_100336_create_pets_table.php new file mode 100644 index 0000000..0bccafe --- /dev/null +++ b/database/migrations/2025_09_13_100336_create_pets_table.php @@ -0,0 +1,49 @@ +integer('id')->primary(); + $table->string('name', 255); + $table->integer('level')->default(1); + $table->integer('evolution')->default(1); + $table->integer('exp')->default(0); + $table->integer('expi')->default(0); + $table->integer('bonus0')->default(0); + $table->integer('bonus1')->default(0); + $table->integer('bonus2')->default(0); + $table->integer('skill0')->default(-1); + $table->integer('skill0lv')->default(0); + $table->integer('skill1')->default(-1); + $table->integer('skill1lv')->default(0); + $table->integer('skill2')->default(-1); + $table->integer('skill2lv')->default(0); + $table->integer('item_duration')->default(0); + $table->integer('born_duration')->nullable(); + $table->dateTime('birthday')->nullable(); + $table->integer('age')->nullable(); + $table->integer('age_bonus')->nullable()->default(0); + $table->integer('pettype')->nullable()->default(0); + $table->integer('typebonus0')->nullable()->default(0); + $table->integer('typebonus1')->nullable()->default(0); + $table->integer('typebonus2')->nullable()->default(0); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('pets'); + } +}; diff --git a/routes/api.php b/routes/api.php index 889937e..9f73743 100644 --- a/routes/api.php +++ b/routes/api.php @@ -1,5 +1,6 @@ get('/user', function (Request $request) { return $request->user(); }); + +Route::prefix('wiki')->group(function () { + Route::prefix('items')->group(function () { + Route::get('/', [WikiController::class, 'search']); + Route::get('/{item}', [WikiController::class, 'show']); + }); +});