Commit 0b811c38 by 杨树贤

优化查询

parent c54e082c
...@@ -51,8 +51,10 @@ class ChainService ...@@ -51,8 +51,10 @@ class ChainService
} }
//修改供应商入驻数据的方法,广播结果的时候,也要广播给供应商入驻的数据 //修改供应商入驻数据的方法,广播结果的时候,也要广播给供应商入驻的数据
public function changeChainIsEntity($supplierName,$isEntity) public function changeChainIsEntity($supplierName, $isEntity)
{ {
ChainModel::where('com_name', $supplierName)->update([
'is_entity' => $isEntity,
]);
} }
} }
<?php //f29c9ed4000b5855b48d55cabc896c41 <?php //b08edbfc6252a2a86d86f79c4a6f7020
/** @noinspection all */ /** @noinspection all */
namespace Illuminate\Support\Facades { namespace Illuminate\Support\Facades {
...@@ -7,13 +7,13 @@ namespace Illuminate\Support\Facades { ...@@ -7,13 +7,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::basePath * @see \Illuminate\Foundation\Application::basePath
* @method static string basePath() * @method static string basePath()
* @see \Illuminate\Container\Container::when * @see \Illuminate\Container\Container::when
* @method static \Illuminate\Container\ContextualBindingBuilder|\Illuminate\Contracts\Container\ContextualBindingBuilder when(string $concrete) * @method static \Illuminate\Container\ContextualBindingBuilder when($concrete)
* @see \Illuminate\Foundation\Application::path * @see \Illuminate\Foundation\Application::path
* @method static string path() * @method static string path()
* @see \Illuminate\Container\Container::bind * @see \Illuminate\Container\Container::bind
* @method static void bind(array|string $abstract, \Closure|null|string $concrete = null, bool $shared = false) * @method static void bind($abstract, $concrete = null, $shared = false)
* @see \Illuminate\Container\Container::tagged * @see \Illuminate\Container\Container::tagged
* @method static array tagged(string $tag) * @method static array tagged($tag)
* @see \Illuminate\Foundation\Application::setDeferredServices * @see \Illuminate\Foundation\Application::setDeferredServices
* @method static void setDeferredServices(array $services) * @method static void setDeferredServices(array $services)
* @see \Illuminate\Foundation\Application::hasMonologConfigurator * @see \Illuminate\Foundation\Application::hasMonologConfigurator
...@@ -23,21 +23,21 @@ namespace Illuminate\Support\Facades { ...@@ -23,21 +23,21 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::registerDeferredProvider * @see \Illuminate\Foundation\Application::registerDeferredProvider
* @method static void registerDeferredProvider($provider, $service = null) * @method static void registerDeferredProvider($provider, $service = null)
* @see \Illuminate\Foundation\Application::handle * @see \Illuminate\Foundation\Application::handle
* @method static \Symfony\Component\HttpFoundation\Response handle(\Symfony\Component\HttpFoundation\Request $request, $type = self::MASTER_REQUEST, $catch = true) * @method static \Symfony\Component\HttpFoundation\Response handle(\Symfony\Component\HttpFoundation\Request $request, $type = \Illuminate\Foundation\Application::MASTER_REQUEST, $catch = true)
* @see \Illuminate\Container\Container::bindIf * @see \Illuminate\Container\Container::bindIf
* @method static void bindIf(string $abstract, \Closure|null|string $concrete = null, bool $shared = false) * @method static void bindIf($abstract, $concrete = null, $shared = false)
* @see \Illuminate\Foundation\Application::version * @see \Illuminate\Foundation\Application::version
* @method static string version() * @method static string version()
* @see \Illuminate\Container\Container::rebinding * @see \Illuminate\Container\Container::rebinding
* @method static mixed rebinding(string $abstract, \Closure $callback) * @method static mixed|null|object|void rebinding($abstract, \Closure $callback)
* @see \Illuminate\Container\Container::extend * @see \Illuminate\Container\Container::extend
* @method static void extend(string $abstract, \Closure $closure) * @method static void extend($abstract, \Closure $closure)
* @see \Illuminate\Foundation\Application::useStoragePath * @see \Illuminate\Foundation\Application::useStoragePath
* @method static \Illuminate\Foundation\Application useStoragePath($path) * @method static \Illuminate\Foundation\Application useStoragePath($path)
* @see \Illuminate\Foundation\Application::hasBeenBootstrapped * @see \Illuminate\Foundation\Application::hasBeenBootstrapped
* @method static bool|mixed hasBeenBootstrapped() * @method static bool|mixed hasBeenBootstrapped()
* @see \Illuminate\Container\Container::offsetUnset * @see \Illuminate\Container\Container::offsetUnset
* @method static void offsetUnset(string $key) * @method static void offsetUnset($key)
* @see \Illuminate\Foundation\Application::loadEnvironmentFrom * @see \Illuminate\Foundation\Application::loadEnvironmentFrom
* @method static \Illuminate\Foundation\Application loadEnvironmentFrom($file) * @method static \Illuminate\Foundation\Application loadEnvironmentFrom($file)
* @see \Illuminate\Container\Container::setInstance * @see \Illuminate\Container\Container::setInstance
...@@ -61,7 +61,7 @@ namespace Illuminate\Support\Facades { ...@@ -61,7 +61,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::getCachedServicesPath * @see \Illuminate\Foundation\Application::getCachedServicesPath
* @method static string getCachedServicesPath() * @method static string getCachedServicesPath()
* @see \Illuminate\Container\Container::isAlias * @see \Illuminate\Container\Container::isAlias
* @method static bool isAlias(string $name) * @method static bool isAlias($name)
* @see \Illuminate\Foundation\Application::registerConfiguredProviders * @see \Illuminate\Foundation\Application::registerConfiguredProviders
* @method static void registerConfiguredProviders() * @method static void registerConfiguredProviders()
* @see \Illuminate\Foundation\Application::isLocale * @see \Illuminate\Foundation\Application::isLocale
...@@ -71,11 +71,11 @@ namespace Illuminate\Support\Facades { ...@@ -71,11 +71,11 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::getNamespace * @see \Illuminate\Foundation\Application::getNamespace
* @method static int|mixed|null|string getNamespace() * @method static int|mixed|null|string getNamespace()
* @see \Illuminate\Container\Container::resolved * @see \Illuminate\Container\Container::resolved
* @method static bool resolved(string $abstract) * @method static bool resolved($abstract)
* @see \Illuminate\Foundation\Application::getProvider * @see \Illuminate\Foundation\Application::getProvider
* @method static false|mixed getProvider($provider) * @method static false|mixed getProvider($provider)
* @see \Illuminate\Container\Container::refresh * @see \Illuminate\Container\Container::refresh
* @method static mixed refresh(string $abstract, $target, string $method) * @method static mixed|null|object refresh($abstract, $target, $method)
* @see \Illuminate\Foundation\Application::registerCoreContainerAliases * @see \Illuminate\Foundation\Application::registerCoreContainerAliases
* @method static void registerCoreContainerAliases() * @method static void registerCoreContainerAliases()
* @see \Illuminate\Foundation\Application::useDatabasePath * @see \Illuminate\Foundation\Application::useDatabasePath
...@@ -87,7 +87,7 @@ namespace Illuminate\Support\Facades { ...@@ -87,7 +87,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::shouldSkipMiddleware * @see \Illuminate\Foundation\Application::shouldSkipMiddleware
* @method static bool shouldSkipMiddleware() * @method static bool shouldSkipMiddleware()
* @see \Illuminate\Container\Container::call * @see \Illuminate\Container\Container::call
* @method static mixed call(callable|string $callback, array $parameters = [], null|string $defaultMethod = null) * @method static mixed call($callback, array $parameters = [], $defaultMethod = null)
* @see \Illuminate\Foundation\Application::getLocale * @see \Illuminate\Foundation\Application::getLocale
* @method static void getLocale() * @method static void getLocale()
* @see \Illuminate\Foundation\Application::terminating * @see \Illuminate\Foundation\Application::terminating
...@@ -103,7 +103,7 @@ namespace Illuminate\Support\Facades { ...@@ -103,7 +103,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::addDeferredServices * @see \Illuminate\Foundation\Application::addDeferredServices
* @method static void addDeferredServices(array $services) * @method static void addDeferredServices(array $services)
* @see \Illuminate\Container\Container::instance * @see \Illuminate\Container\Container::instance
* @method static void instance(string $abstract, $instance) * @method static void instance($abstract, $instance)
* @see \Illuminate\Foundation\Application::configureMonologUsing * @see \Illuminate\Foundation\Application::configureMonologUsing
* @method static \Illuminate\Foundation\Application configureMonologUsing(callable $callback) * @method static \Illuminate\Foundation\Application configureMonologUsing(callable $callback)
* @see \Illuminate\Foundation\Application::databasePath * @see \Illuminate\Foundation\Application::databasePath
...@@ -121,11 +121,11 @@ namespace Illuminate\Support\Facades { ...@@ -121,11 +121,11 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::routesAreCached * @see \Illuminate\Foundation\Application::routesAreCached
* @method static void routesAreCached() * @method static void routesAreCached()
* @see \Illuminate\Container\Container::tag * @see \Illuminate\Container\Container::tag
* @method static void tag(array|string $abstracts, array|array[] $tags) * @method static void tag($abstracts, $tags)
* @see \Illuminate\Foundation\Application::publicPath * @see \Illuminate\Foundation\Application::publicPath
* @method static string publicPath() * @method static string publicPath()
* @see \Illuminate\Container\Container::addContextualBinding * @see \Illuminate\Container\Container::addContextualBinding
* @method static void addContextualBinding(string $concrete, string $abstract, \Closure|string $implementation) * @method static void addContextualBinding($concrete, $abstract, $implementation)
* @see \Illuminate\Foundation\Application::isDownForMaintenance * @see \Illuminate\Foundation\Application::isDownForMaintenance
* @method static bool isDownForMaintenance() * @method static bool isDownForMaintenance()
* @see \Illuminate\Foundation\Application::loadDeferredProviders * @see \Illuminate\Foundation\Application::loadDeferredProviders
...@@ -133,7 +133,7 @@ namespace Illuminate\Support\Facades { ...@@ -133,7 +133,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::abort * @see \Illuminate\Foundation\Application::abort
* @method static void abort($code, $message = '', array $headers = []) * @method static void abort($code, $message = '', array $headers = [])
* @see \Illuminate\Container\Container::afterResolving * @see \Illuminate\Container\Container::afterResolving
* @method static void afterResolving(string $abstract, \Closure $callback = null) * @method static void afterResolving($abstract, \Closure $callback = null)
* @see \Illuminate\Foundation\Application::afterBootstrapping * @see \Illuminate\Foundation\Application::afterBootstrapping
* @method static void afterBootstrapping($bootstrapper, \Closure $callback) * @method static void afterBootstrapping($bootstrapper, \Closure $callback)
* @see \Illuminate\Foundation\Application::configurationIsCached * @see \Illuminate\Foundation\Application::configurationIsCached
...@@ -141,35 +141,35 @@ namespace Illuminate\Support\Facades { ...@@ -141,35 +141,35 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::runningInConsole * @see \Illuminate\Foundation\Application::runningInConsole
* @method static bool runningInConsole() * @method static bool runningInConsole()
* @see \Illuminate\Container\Container::offsetGet * @see \Illuminate\Container\Container::offsetGet
* @method static mixed offsetGet(string $key) * @method static mixed|null|object offsetGet($key)
* @see \Illuminate\Foundation\Application::langPath * @see \Illuminate\Foundation\Application::langPath
* @method static string langPath() * @method static string langPath()
* @see \Illuminate\Container\Container::offsetSet * @see \Illuminate\Container\Container::offsetSet
* @method static void offsetSet(string $key, $value) * @method static void offsetSet($key, $value)
* @see \Illuminate\Foundation\Application::flush * @see \Illuminate\Foundation\Application::flush
* @method static void flush() * @method static void flush()
* @see \Illuminate\Container\Container::alias * @see \Illuminate\Container\Container::alias
* @method static void alias(string $abstract, string $alias) * @method static void alias($abstract, $alias)
* @see \Illuminate\Container\Container::offsetExists * @see \Illuminate\Container\Container::offsetExists
* @method static bool offsetExists(string $key) * @method static bool offsetExists($key)
* @see \Illuminate\Foundation\Application::afterLoadingEnvironment * @see \Illuminate\Foundation\Application::afterLoadingEnvironment
* @method static null afterLoadingEnvironment(\Closure $callback) * @method static null afterLoadingEnvironment(\Closure $callback)
* @see \Illuminate\Foundation\Application::boot * @see \Illuminate\Foundation\Application::boot
* @method static void boot() * @method static void boot()
* @see \Illuminate\Foundation\Application::make * @see \Illuminate\Foundation\Application::make
* @method static void make($abstract, array $parameters = []) * @method static mixed|null|object make($abstract, array $parameters = [])
* @see \Illuminate\Foundation\Application::getMonologConfigurator * @see \Illuminate\Foundation\Application::getMonologConfigurator
* @method static callable|null getMonologConfigurator() * @method static callable|null getMonologConfigurator()
* @see \Illuminate\Foundation\Application::bootstrapWith * @see \Illuminate\Foundation\Application::bootstrapWith
* @method static void bootstrapWith(array $bootstrappers) * @method static void bootstrapWith(array $bootstrappers)
* @see \Illuminate\Container\Container::singleton * @see \Illuminate\Container\Container::singleton
* @method static void singleton(array|string $abstract, \Closure|null|string $concrete = null) * @method static void singleton($abstract, $concrete = null)
* @see \Illuminate\Container\Container::forgetInstance * @see \Illuminate\Container\Container::forgetInstance
* @method static void forgetInstance(string $abstract) * @method static void forgetInstance($abstract)
* @see \Illuminate\Container\Container::isShared * @see \Illuminate\Container\Container::isShared
* @method static bool isShared(string $abstract) * @method static bool isShared($abstract)
* @see \Illuminate\Container\Container::resolving * @see \Illuminate\Container\Container::resolving
* @method static void resolving(string $abstract, \Closure $callback = null) * @method static void resolving($abstract, \Closure $callback = null)
* @see \Illuminate\Foundation\Application::bound * @see \Illuminate\Foundation\Application::bound
* @method static bool bound($abstract) * @method static bool bound($abstract)
* @see \Illuminate\Foundation\Application::isBooted * @see \Illuminate\Foundation\Application::isBooted
...@@ -177,7 +177,7 @@ namespace Illuminate\Support\Facades { ...@@ -177,7 +177,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::getCachedRoutesPath * @see \Illuminate\Foundation\Application::getCachedRoutesPath
* @method static string getCachedRoutesPath() * @method static string getCachedRoutesPath()
* @see \Illuminate\Container\Container::getBindings * @see \Illuminate\Container\Container::getBindings
* @method static array getBindings() * @method static array|mixed getBindings()
* @see \Illuminate\Foundation\Application::useEnvironmentPath * @see \Illuminate\Foundation\Application::useEnvironmentPath
* @method static \Illuminate\Foundation\Application useEnvironmentPath($path) * @method static \Illuminate\Foundation\Application useEnvironmentPath($path)
* @see \Illuminate\Foundation\Application::setBasePath * @see \Illuminate\Foundation\Application::setBasePath
...@@ -187,7 +187,7 @@ namespace Illuminate\Support\Facades { ...@@ -187,7 +187,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::isDeferredService * @see \Illuminate\Foundation\Application::isDeferredService
* @method static bool isDeferredService($service) * @method static bool isDeferredService($service)
* @see \Illuminate\Container\Container::build * @see \Illuminate\Container\Container::build
* @method static mixed build(string $concrete, array $parameters = []) * @method static mixed|null|object build($concrete, array $parameters = [])
* @see \Illuminate\Foundation\Application::getCachedConfigPath * @see \Illuminate\Foundation\Application::getCachedConfigPath
* @method static string getCachedConfigPath() * @method static string getCachedConfigPath()
* @see \Illuminate\Foundation\Application::configPath * @see \Illuminate\Foundation\Application::configPath
...@@ -215,29 +215,29 @@ namespace Illuminate\Support\Facades { ...@@ -215,29 +215,29 @@ namespace Illuminate\Support\Facades {
/** /**
* @see \Illuminate\Auth\AuthManager::setDefaultDriver * @see \Illuminate\Auth\AuthManager::setDefaultDriver
* @method static void setDefaultDriver(string $name) * @method static void setDefaultDriver($name)
* @see \Illuminate\Auth\AuthManager::shouldUse * @see \Illuminate\Auth\AuthManager::shouldUse
* @method static void shouldUse(string $name) * @method static void shouldUse($name)
* @see \Illuminate\Auth\AuthManager::guard * @see \Illuminate\Auth\AuthManager::guard
* @method static \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard guard(string $name = null) * @method static \Illuminate\Contracts\Auth\Guard|\Illuminate\Contracts\Auth\StatefulGuard|mixed guard($name = null)
* @see \Illuminate\Auth\CreatesUserProviders::createUserProvider * @see \Illuminate\Auth\CreatesUserProviders::createUserProvider
* @method static \Illuminate\Contracts\Auth\UserProvider createUserProvider(string $provider) * @method static \Illuminate\Contracts\Auth\UserProvider createUserProvider(string $provider)
* @see \Illuminate\Auth\AuthManager::createTokenDriver * @see \Illuminate\Auth\AuthManager::createTokenDriver
* @method static \Illuminate\Auth\TokenGuard createTokenDriver(string $name, array $config) * @method static \Illuminate\Auth\TokenGuard createTokenDriver($name, $config)
* @see \Illuminate\Auth\AuthManager::viaRequest * @see \Illuminate\Auth\AuthManager::viaRequest
* @method static \Illuminate\Auth\AuthManager viaRequest(string $driver, callable $callback) * @method static \Illuminate\Auth\AuthManager viaRequest($driver, callable $callback)
* @see \Illuminate\Auth\AuthManager::extend * @see \Illuminate\Auth\AuthManager::extend
* @method static \Illuminate\Auth\AuthManager extend(string $driver, \Closure $callback) * @method static \Illuminate\Auth\AuthManager extend($driver, \Closure $callback)
* @see \Illuminate\Auth\AuthManager::provider * @see \Illuminate\Auth\AuthManager::provider
* @method static \Illuminate\Auth\AuthManager provider(string $name, \Closure $callback) * @method static \Illuminate\Auth\AuthManager provider($name, \Closure $callback)
* @see \Illuminate\Auth\AuthManager::userResolver * @see \Illuminate\Auth\AuthManager::userResolver
* @method static \Closure userResolver() * @method static \Closure userResolver()
* @see \Illuminate\Auth\AuthManager::resolveUsersUsing * @see \Illuminate\Auth\AuthManager::resolveUsersUsing
* @method static \Illuminate\Auth\AuthManager resolveUsersUsing(\Closure $userResolver) * @method static \Illuminate\Auth\AuthManager resolveUsersUsing(\Closure $userResolver)
* @see \Illuminate\Auth\AuthManager::createSessionDriver * @see \Illuminate\Auth\AuthManager::createSessionDriver
* @method static \Illuminate\Auth\SessionGuard createSessionDriver(string $name, array $config) * @method static \Illuminate\Auth\SessionGuard createSessionDriver($name, $config)
* @see \Illuminate\Auth\AuthManager::getDefaultDriver * @see \Illuminate\Auth\AuthManager::getDefaultDriver
* @method static string getDefaultDriver() * @method static void getDefaultDriver()
* @see \Illuminate\Contracts\Auth\Guard::setUser * @see \Illuminate\Contracts\Auth\Guard::setUser
* @method static void setUser(\Illuminate\Contracts\Auth\Authenticatable $user) * @method static void setUser(\Illuminate\Contracts\Auth\Authenticatable $user)
* @see \Illuminate\Contracts\Auth\Guard::guest * @see \Illuminate\Contracts\Auth\Guard::guest
...@@ -251,69 +251,69 @@ namespace Illuminate\Support\Facades { ...@@ -251,69 +251,69 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Contracts\Auth\Guard::validate * @see \Illuminate\Contracts\Auth\Guard::validate
* @method static bool validate(array $credentials = []) * @method static bool validate(array $credentials = [])
* @see \Illuminate\Contracts\Auth\StatefulGuard::onceUsingId * @see \Illuminate\Contracts\Auth\StatefulGuard::onceUsingId
* @method static void onceUsingId($id) * @method static bool onceUsingId($id)
* @see \Illuminate\Contracts\Auth\StatefulGuard::login * @see \Illuminate\Contracts\Auth\StatefulGuard::login
* @method static void login(\Illuminate\Contracts\Auth\Authenticatable $user, $remember = false) * @method static void login(\Illuminate\Contracts\Auth\Authenticatable $user, bool $remember = false)
* @see \Illuminate\Contracts\Auth\StatefulGuard::attempt * @see \Illuminate\Contracts\Auth\StatefulGuard::attempt
* @method static void attempt(array $credentials = [], $remember = false, $login = true) * @method static bool attempt(array $credentials = [], bool $remember = false, bool $login = true)
* @see \Illuminate\Contracts\Auth\StatefulGuard::viaRemember * @see \Illuminate\Contracts\Auth\StatefulGuard::viaRemember
* @method static void viaRemember() * @method static bool viaRemember()
* @see \Illuminate\Contracts\Auth\StatefulGuard::logout * @see \Illuminate\Contracts\Auth\StatefulGuard::logout
* @method static void logout() * @method static void logout()
* @see \Illuminate\Contracts\Auth\StatefulGuard::once * @see \Illuminate\Contracts\Auth\StatefulGuard::once
* @method static void once(array $credentials = []) * @method static bool once(array $credentials = [])
* @see \Illuminate\Contracts\Auth\StatefulGuard::loginUsingId * @see \Illuminate\Contracts\Auth\StatefulGuard::loginUsingId
* @method static void loginUsingId($id, $remember = false) * @method static \Illuminate\Contracts\Auth\Authenticatable loginUsingId($id, bool $remember = false)
*/ */
class Auth {} class Auth {}
/** /**
* @see \Illuminate\View\Compilers\BladeCompiler::getCustomDirectives * @see \Illuminate\View\Compilers\BladeCompiler::getCustomDirectives
* @method static array|mixed getCustomDirectives() * @method static array getCustomDirectives()
* @see \Illuminate\View\Compilers\BladeCompiler::setEchoFormat * @see \Illuminate\View\Compilers\BladeCompiler::setEchoFormat
* @method static void setEchoFormat($format) * @method static void setEchoFormat(string $format)
* @see \Illuminate\View\Compilers\BladeCompiler::compile * @see \Illuminate\View\Compilers\BladeCompiler::compile
* @method static void compile($path = null) * @method static void compile(string $path = null)
* @see \Illuminate\View\Compilers\Compiler::isExpired * @see \Illuminate\View\Compilers\Compiler::isExpired
* @method static bool isExpired(string $path) * @method static bool isExpired(string $path)
* @see \Illuminate\View\Compilers\BladeCompiler::extend * @see \Illuminate\View\Compilers\BladeCompiler::extend
* @method static void extend(callable $compiler) * @method static void extend(callable $compiler)
* @see \Illuminate\View\Compilers\BladeCompiler::getContentTags * @see \Illuminate\View\Compilers\BladeCompiler::getContentTags
* @method static array getContentTags() * @method static array|string getContentTags()
* @see \Illuminate\View\Compilers\BladeCompiler::setEscapedContentTags * @see \Illuminate\View\Compilers\BladeCompiler::setEscapedContentTags
* @method static void setEscapedContentTags($openTag, $closeTag) * @method static void setEscapedContentTags(string $openTag, string $closeTag)
* @see \Illuminate\View\Compilers\Compiler::getCompiledPath * @see \Illuminate\View\Compilers\Compiler::getCompiledPath
* @method static string getCompiledPath(string $path) * @method static string getCompiledPath(string $path)
* @see \Illuminate\View\Compilers\BladeCompiler::setRawTags * @see \Illuminate\View\Compilers\BladeCompiler::setRawTags
* @method static void setRawTags($openTag, $closeTag) * @method static void setRawTags(string $openTag, string $closeTag)
* @see \Illuminate\View\Compilers\BladeCompiler::getRawTags * @see \Illuminate\View\Compilers\BladeCompiler::getRawTags
* @method static mixed|string[] getRawTags() * @method static array|string[] getRawTags()
* @see \Illuminate\View\Compilers\BladeCompiler::compileEchoDefaults * @see \Illuminate\View\Compilers\BladeCompiler::compileEchoDefaults
* @method static array|null|string|string[] compileEchoDefaults($value) * @method static string compileEchoDefaults(string $value)
* @see \Illuminate\View\Compilers\BladeCompiler::setPath * @see \Illuminate\View\Compilers\BladeCompiler::setPath
* @method static void setPath($path) * @method static void setPath(string $path)
* @see \Illuminate\View\Compilers\BladeCompiler::setContentTags * @see \Illuminate\View\Compilers\BladeCompiler::setContentTags
* @method static void setContentTags($openTag, $closeTag, $escaped = false) * @method static void setContentTags(string $openTag, string $closeTag, bool $escaped = false)
* @see \Illuminate\View\Compilers\BladeCompiler::getPath * @see \Illuminate\View\Compilers\BladeCompiler::getPath
* @method static string getPath() * @method static string getPath()
* @see \Illuminate\View\Compilers\BladeCompiler::compileString * @see \Illuminate\View\Compilers\BladeCompiler::compileString
* @method static array|null|string|string[] compileString($value) * @method static string compileString(string $value)
* @see \Illuminate\View\Compilers\BladeCompiler::directive * @see \Illuminate\View\Compilers\BladeCompiler::directive
* @method static void directive($name, callable $handler) * @method static void directive(string $name, callable $handler)
* @see \Illuminate\View\Compilers\BladeCompiler::getEscapedContentTags * @see \Illuminate\View\Compilers\BladeCompiler::getEscapedContentTags
* @method static array getEscapedContentTags() * @method static array|string getEscapedContentTags()
* @see \Illuminate\View\Compilers\BladeCompiler::getExtensions * @see \Illuminate\View\Compilers\BladeCompiler::getExtensions
* @method static array|mixed getExtensions() * @method static array getExtensions()
*/ */
class Blade {} class Blade {}
/** /**
* @see \Illuminate\Contracts\Bus\Dispatcher::dispatch * @see \Illuminate\Contracts\Bus\Dispatcher::dispatch
* @method static void dispatch($command) * @method static mixed dispatch($command)
* @see \Illuminate\Contracts\Bus\Dispatcher::dispatchNow * @see \Illuminate\Contracts\Bus\Dispatcher::dispatchNow
* @method static void dispatchNow($command) * @method static mixed dispatchNow($command)
* @see \Illuminate\Contracts\Bus\Dispatcher::pipeThrough * @see \Illuminate\Contracts\Bus\Dispatcher::pipeThrough
* @method static void pipeThrough(array $pipes) * @method static \Illuminate\Contracts\Bus\Dispatcher pipeThrough(array $pipes)
*/ */
class Bus {} class Bus {}
...@@ -385,13 +385,13 @@ namespace Illuminate\Support\Facades { ...@@ -385,13 +385,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Config\Repository::all * @see \Illuminate\Config\Repository::all
* @method static array|mixed all() * @method static array|mixed all()
* @see \Illuminate\Config\Repository::offsetGet * @see \Illuminate\Config\Repository::offsetGet
* @method static mixed offsetGet($key) * @method static array|\ArrayAccess|mixed offsetGet($key)
* @see \Illuminate\Config\Repository::set * @see \Illuminate\Config\Repository::set
* @method static void set($key, $value = null) * @method static void set($key, $value = null)
* @see \Illuminate\Config\Repository::offsetUnset * @see \Illuminate\Config\Repository::offsetUnset
* @method static void offsetUnset($key) * @method static void offsetUnset($key)
* @see \Illuminate\Config\Repository::get * @see \Illuminate\Config\Repository::get
* @method static mixed get($key, $default = null) * @method static array|\ArrayAccess|mixed get($key, $default = null)
* @see \Illuminate\Config\Repository::prepend * @see \Illuminate\Config\Repository::prepend
* @method static void prepend($key, $value) * @method static void prepend($key, $value)
* @see \Illuminate\Config\Repository::offsetExists * @see \Illuminate\Config\Repository::offsetExists
...@@ -407,21 +407,21 @@ namespace Illuminate\Support\Facades { ...@@ -407,21 +407,21 @@ namespace Illuminate\Support\Facades {
/** /**
* @see \Illuminate\Cookie\CookieJar::forget * @see \Illuminate\Cookie\CookieJar::forget
* @method static \Symfony\Component\HttpFoundation\Cookie forget($name, $path = null, $domain = null) * @method static \Symfony\Component\HttpFoundation\Cookie forget(string $name, string $path = null, string $domain = null)
* @see \Illuminate\Cookie\CookieJar::hasQueued * @see \Illuminate\Cookie\CookieJar::hasQueued
* @method static bool hasQueued($key) * @method static bool hasQueued(string $key)
* @see \Illuminate\Cookie\CookieJar::unqueue * @see \Illuminate\Cookie\CookieJar::unqueue
* @method static void unqueue($name) * @method static void unqueue(string $name)
* @see \Illuminate\Cookie\CookieJar::queued * @see \Illuminate\Cookie\CookieJar::queued
* @method static mixed queued($key, $default = null) * @method static \Symfony\Component\HttpFoundation\Cookie queued(string $key, $default = null)
* @see \Illuminate\Cookie\CookieJar::setDefaultPathAndDomain * @see \Illuminate\Cookie\CookieJar::setDefaultPathAndDomain
* @method static \Illuminate\Cookie\CookieJar setDefaultPathAndDomain($path, $domain, $secure = false) * @method static \Illuminate\Cookie\CookieJar setDefaultPathAndDomain(string $path, string $domain, bool $secure = false)
* @see \Illuminate\Cookie\CookieJar::forever * @see \Illuminate\Cookie\CookieJar::forever
* @method static \Symfony\Component\HttpFoundation\Cookie forever($name, $value, $path = null, $domain = null, $secure = false, $httpOnly = true) * @method static \Symfony\Component\HttpFoundation\Cookie forever(string $name, string $value, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true)
* @see \Illuminate\Cookie\CookieJar::make * @see \Illuminate\Cookie\CookieJar::make
* @method static \Symfony\Component\HttpFoundation\Cookie make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true) * @method static \Symfony\Component\HttpFoundation\Cookie make(string $name, string $value, int $minutes = 0, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true)
* @see \Illuminate\Cookie\CookieJar::getQueuedCookies * @see \Illuminate\Cookie\CookieJar::getQueuedCookies
* @method static array|mixed getQueuedCookies() * @method static array getQueuedCookies()
* @see \Illuminate\Cookie\CookieJar::queue * @see \Illuminate\Cookie\CookieJar::queue
* @method static void queue() * @method static void queue()
*/ */
...@@ -429,35 +429,35 @@ namespace Illuminate\Support\Facades { ...@@ -429,35 +429,35 @@ namespace Illuminate\Support\Facades {
/** /**
* @see \Illuminate\Encryption\Encrypter::encrypt * @see \Illuminate\Encryption\Encrypter::encrypt
* @method static string encrypt(string $value) * @method static string encrypt($value)
* @see \Illuminate\Encryption\Encrypter::decrypt * @see \Illuminate\Encryption\Encrypter::decrypt
* @method static string decrypt(string $payload) * @method static mixed|string decrypt($payload)
* @see \Illuminate\Encryption\Encrypter::supported * @see \Illuminate\Encryption\Encrypter::supported
* @method static bool supported(string $key, string $cipher) * @method static bool supported($key, $cipher)
*/ */
class Crypt {} class Crypt {}
/** /**
* @see \Illuminate\Database\DatabaseManager::setDefaultConnection * @see \Illuminate\Database\DatabaseManager::setDefaultConnection
* @method static void setDefaultConnection(string $name) * @method static void setDefaultConnection($name)
* @see \Illuminate\Database\DatabaseManager::disconnect * @see \Illuminate\Database\DatabaseManager::disconnect
* @method static void disconnect(string $name = null) * @method static void disconnect($name = null)
* @see \Illuminate\Database\DatabaseManager::supportedDrivers * @see \Illuminate\Database\DatabaseManager::supportedDrivers
* @method static array|string[] supportedDrivers() * @method static string[] supportedDrivers()
* @see \Illuminate\Database\DatabaseManager::getConnections * @see \Illuminate\Database\DatabaseManager::getConnections
* @method static array getConnections() * @method static array|mixed getConnections()
* @see \Illuminate\Database\DatabaseManager::purge * @see \Illuminate\Database\DatabaseManager::purge
* @method static void purge(string $name = null) * @method static void purge($name = null)
* @see \Illuminate\Database\DatabaseManager::getDefaultConnection * @see \Illuminate\Database\DatabaseManager::getDefaultConnection
* @method static string getDefaultConnection() * @method static string getDefaultConnection()
* @see \Illuminate\Database\DatabaseManager::extend * @see \Illuminate\Database\DatabaseManager::extend
* @method static void extend(string $name, callable $resolver) * @method static void extend($name, callable $resolver)
* @see \Illuminate\Database\DatabaseManager::reconnect * @see \Illuminate\Database\DatabaseManager::reconnect
* @method static \Illuminate\Database\Connection reconnect(string $name = null) * @method static \Illuminate\Database\Connection|\Illuminate\Database\ConnectionInterface|mixed reconnect($name = null)
* @see \Illuminate\Database\DatabaseManager::availableDrivers * @see \Illuminate\Database\DatabaseManager::availableDrivers
* @method static array availableDrivers() * @method static array|string[] availableDrivers()
* @see \Illuminate\Database\DatabaseManager::connection * @see \Illuminate\Database\DatabaseManager::connection
* @method static \Illuminate\Database\Connection connection(string $name = null) * @method static \Illuminate\Database\Connection|\Illuminate\Database\ConnectionInterface|mixed connection($name = null)
* @see \Illuminate\Database\Connection::logQuery * @see \Illuminate\Database\Connection::logQuery
* @method static void logQuery(string $query, array $bindings, float|null $time = null) * @method static void logQuery(string $query, array $bindings, float|null $time = null)
* @see \Illuminate\Database\Connection::getPostProcessor * @see \Illuminate\Database\Connection::getPostProcessor
...@@ -585,33 +585,33 @@ namespace Illuminate\Support\Facades { ...@@ -585,33 +585,33 @@ namespace Illuminate\Support\Facades {
/** /**
* @see \Illuminate\Events\Dispatcher::hasListeners * @see \Illuminate\Events\Dispatcher::hasListeners
* @method static bool hasListeners($eventName) * @method static bool hasListeners(string $eventName)
* @see \Illuminate\Events\Dispatcher::listen * @see \Illuminate\Events\Dispatcher::listen
* @method static void listen($events, $listener, $priority = 0) * @method static void listen(array|string $events, $listener, int $priority = 0)
* @see \Illuminate\Events\Dispatcher::flush * @see \Illuminate\Events\Dispatcher::flush
* @method static void flush($event) * @method static void flush(string $event)
* @see \Illuminate\Events\Dispatcher::fire * @see \Illuminate\Events\Dispatcher::fire
* @method static array|mixed|null fire($event, $payload = [], $halt = false) * @method static array|null fire(object|string $event, $payload = [], bool $halt = false)
* @see \Illuminate\Events\Dispatcher::makeListener * @see \Illuminate\Events\Dispatcher::makeListener
* @method static \Closure makeListener($listener) * @method static \Closure|mixed makeListener($listener)
* @see \Illuminate\Events\Dispatcher::setQueueResolver * @see \Illuminate\Events\Dispatcher::setQueueResolver
* @method static \Illuminate\Events\Dispatcher setQueueResolver(callable $resolver) * @method static \Illuminate\Events\Dispatcher setQueueResolver(callable $resolver)
* @see \Illuminate\Events\Dispatcher::subscribe * @see \Illuminate\Events\Dispatcher::subscribe
* @method static void subscribe($subscriber) * @method static void subscribe(object|string $subscriber)
* @see \Illuminate\Events\Dispatcher::push * @see \Illuminate\Events\Dispatcher::push
* @method static void push($event, $payload = []) * @method static void push(string $event, array $payload = [])
* @see \Illuminate\Events\Dispatcher::forget * @see \Illuminate\Events\Dispatcher::forget
* @method static void forget($event) * @method static void forget(string $event)
* @see \Illuminate\Events\Dispatcher::firing * @see \Illuminate\Events\Dispatcher::firing
* @method static mixed|string firing() * @method static string firing()
* @see \Illuminate\Events\Dispatcher::until * @see \Illuminate\Events\Dispatcher::until
* @method static array|mixed|null until($event, $payload = []) * @method static array|mixed|null until(object|string $event, array $payload = [])
* @see \Illuminate\Events\Dispatcher::forgetPushed * @see \Illuminate\Events\Dispatcher::forgetPushed
* @method static void forgetPushed() * @method static void forgetPushed()
* @see \Illuminate\Events\Dispatcher::createClassListener * @see \Illuminate\Events\Dispatcher::createClassListener
* @method static \Closure createClassListener($listener) * @method static \Closure createClassListener($listener)
* @see \Illuminate\Events\Dispatcher::getListeners * @see \Illuminate\Events\Dispatcher::getListeners
* @method static void getListeners($eventName) * @method static array getListeners(string $eventName)
*/ */
class Event {} class Event {}
...@@ -687,33 +687,33 @@ namespace Illuminate\Support\Facades { ...@@ -687,33 +687,33 @@ namespace Illuminate\Support\Facades {
/** /**
* @see \Illuminate\Contracts\Auth\Access\Gate::allows * @see \Illuminate\Contracts\Auth\Access\Gate::allows
* @method static bool allows(string $ability, array|mixed $arguments = []) * @method static void allows($ability, $arguments = [])
* @see \Illuminate\Contracts\Auth\Access\Gate::before * @see \Illuminate\Contracts\Auth\Access\Gate::before
* @method static \Illuminate\Contracts\Auth\Access\Gate before(callable $callback) * @method static void before(callable $callback)
* @see \Illuminate\Contracts\Auth\Access\Gate::forUser * @see \Illuminate\Contracts\Auth\Access\Gate::forUser
* @method static \Illuminate\Contracts\Auth\Access\Gate forUser(\Illuminate\Contracts\Auth\Authenticatable|mixed $user) * @method static void forUser($user)
* @see \Illuminate\Contracts\Auth\Access\Gate::define * @see \Illuminate\Contracts\Auth\Access\Gate::define
* @method static \Illuminate\Contracts\Auth\Access\Gate define(string $ability, callable|string $callback) * @method static void define($ability, $callback)
* @see \Illuminate\Contracts\Auth\Access\Gate::has * @see \Illuminate\Contracts\Auth\Access\Gate::has
* @method static bool has(string $ability) * @method static void has($ability)
* @see \Illuminate\Contracts\Auth\Access\Gate::check * @see \Illuminate\Contracts\Auth\Access\Gate::check
* @method static bool check(string $ability, array|mixed $arguments = []) * @method static void check($ability, $arguments = [])
* @see \Illuminate\Contracts\Auth\Access\Gate::denies * @see \Illuminate\Contracts\Auth\Access\Gate::denies
* @method static bool denies(string $ability, array|mixed $arguments = []) * @method static void denies($ability, $arguments = [])
* @see \Illuminate\Contracts\Auth\Access\Gate::policy * @see \Illuminate\Contracts\Auth\Access\Gate::policy
* @method static \Illuminate\Contracts\Auth\Access\Gate policy(string $class, string $policy) * @method static void policy($class, $policy)
*/ */
class Gate {} class Gate {}
/** /**
* @see \Illuminate\Hashing\BcryptHasher::setRounds * @see \Illuminate\Hashing\BcryptHasher::setRounds
* @method static \Illuminate\Hashing\BcryptHasher setRounds(int $rounds) * @method static \Illuminate\Hashing\BcryptHasher setRounds($rounds)
* @see \Illuminate\Hashing\BcryptHasher::needsRehash * @see \Illuminate\Hashing\BcryptHasher::needsRehash
* @method static bool needsRehash(string $hashedValue, array $options = []) * @method static bool needsRehash($hashedValue, array $options = [])
* @see \Illuminate\Hashing\BcryptHasher::check * @see \Illuminate\Hashing\BcryptHasher::check
* @method static bool check(string $value, string $hashedValue, array $options = []) * @method static bool check($value, $hashedValue, array $options = [])
* @see \Illuminate\Hashing\BcryptHasher::make * @see \Illuminate\Hashing\BcryptHasher::make
* @method static string make(string $value, array $options = []) * @method static null|string make($value, array $options = [])
*/ */
class Hash {} class Hash {}
...@@ -751,11 +751,11 @@ namespace Illuminate\Support\Facades { ...@@ -751,11 +751,11 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest * @see \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest
* @method static bool isXmlHttpRequest() * @method static bool isXmlHttpRequest()
* @see \Illuminate\Http\Request::cookie * @see \Illuminate\Http\Request::cookie
* @method static void cookie($key = null, $default = null) * @method static array|string cookie($key = null, $default = null)
* @see \Illuminate\Http\Request::method * @see \Illuminate\Http\Request::method
* @method static string method() * @method static string method()
* @see \Illuminate\Http\Request::old * @see \Illuminate\Http\Request::old
* @method static void old($key = null, $default = null) * @method static mixed old($key = null, $default = null)
* @see \Illuminate\Http\Request::ip * @see \Illuminate\Http\Request::ip
* @method static mixed|null|string ip() * @method static mixed|null|string ip()
* @see \Symfony\Component\HttpFoundation\Request::getContent * @see \Symfony\Component\HttpFoundation\Request::getContent
...@@ -793,7 +793,7 @@ namespace Illuminate\Support\Facades { ...@@ -793,7 +793,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName * @see \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName
* @method static void setTrustedHeaderName(string $key, string $value) * @method static void setTrustedHeaderName(string $key, string $value)
* @see \Illuminate\Http\Request::server * @see \Illuminate\Http\Request::server
* @method static void server($key = null, $default = null) * @method static array|string server($key = null, $default = null)
* @see \Symfony\Component\HttpFoundation\Request::setLocale * @see \Symfony\Component\HttpFoundation\Request::setLocale
* @method static void setLocale(string $locale) * @method static void setLocale(string $locale)
* @see \Illuminate\Http\Request::setUserResolver * @see \Illuminate\Http\Request::setUserResolver
...@@ -905,7 +905,7 @@ namespace Illuminate\Support\Facades { ...@@ -905,7 +905,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::accepts * @see \Illuminate\Http\Request::accepts
* @method static bool accepts($contentTypes) * @method static bool accepts($contentTypes)
* @see \Illuminate\Http\Request::query * @see \Illuminate\Http\Request::query
* @method static void query($key = null, $default = null) * @method static array|string query($key = null, $default = null)
* @see \Illuminate\Http\Request::format * @see \Illuminate\Http\Request::format
* @method static int|mixed|string format($default = 'html') * @method static int|mixed|string format($default = 'html')
* @see \Illuminate\Http\Request::capture * @see \Illuminate\Http\Request::capture
...@@ -921,7 +921,7 @@ namespace Illuminate\Support\Facades { ...@@ -921,7 +921,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getTrustedHosts * @see \Symfony\Component\HttpFoundation\Request::getTrustedHosts
* @method static array|string[] getTrustedHosts() * @method static array|string[] getTrustedHosts()
* @see \Illuminate\Http\Request::header * @see \Illuminate\Http\Request::header
* @method static void header($key = null, $default = null) * @method static array|string header($key = null, $default = null)
* @see \Symfony\Component\HttpFoundation\Request::getBasePath * @see \Symfony\Component\HttpFoundation\Request::getBasePath
* @method static string getBasePath() * @method static string getBasePath()
* @see \Illuminate\Http\Request::offsetGet * @see \Illuminate\Http\Request::offsetGet
...@@ -947,7 +947,7 @@ namespace Illuminate\Support\Facades { ...@@ -947,7 +947,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::root * @see \Illuminate\Http\Request::root
* @method static string root() * @method static string root()
* @see \Illuminate\Http\Request::json * @see \Illuminate\Http\Request::json
* @method static mixed|\Symfony\Component\HttpFoundation\ParameterBag json($key = null, $default = null) * @method static mixed|string|\Symfony\Component\HttpFoundation\ParameterBag json($key = null, $default = null)
* @see \Illuminate\Http\Request::offsetExists * @see \Illuminate\Http\Request::offsetExists
* @method static bool offsetExists($offset) * @method static bool offsetExists($offset)
* @see \Symfony\Component\HttpFoundation\Request::getUri * @see \Symfony\Component\HttpFoundation\Request::getUri
...@@ -975,7 +975,7 @@ namespace Illuminate\Support\Facades { ...@@ -975,7 +975,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::toArray * @see \Illuminate\Http\Request::toArray
* @method static array toArray() * @method static array toArray()
* @see \Illuminate\Http\Request::allFiles * @see \Illuminate\Http\Request::allFiles
* @method static array|array[]|\array[][]|\array[][][]|\Illuminate\Http\UploadedFile[]|\Illuminate\Http\UploadedFile[][]|\Illuminate\Http\UploadedFile[][][]|null[]|\null[][]|\null[][][] allFiles() * @method static array|array[]|\array[][]|\Illuminate\Http\UploadedFile[]|\Illuminate\Http\UploadedFile[][]|\null[][]|\null[][][] allFiles()
* @see \Illuminate\Http\Request::user * @see \Illuminate\Http\Request::user
* @method static mixed user($guard = null) * @method static mixed user($guard = null)
* @see \Symfony\Component\HttpFoundation\Request::getLanguages * @see \Symfony\Component\HttpFoundation\Request::getLanguages
...@@ -1025,41 +1025,41 @@ namespace Illuminate\Support\Facades { ...@@ -1025,41 +1025,41 @@ namespace Illuminate\Support\Facades {
/** /**
* @see \Illuminate\Log\Writer::useSyslog * @see \Illuminate\Log\Writer::useSyslog
* @method static \Psr\Log\LoggerInterface useSyslog(string $name = 'laravel', string $level = 'debug') * @method static \Monolog\Logger useSyslog($name = 'laravel', $level = 'debug')
* @see \Illuminate\Log\Writer::debug * @see \Illuminate\Log\Writer::debug
* @method static null|void debug(string $message, array $context = []) * @method static null|void debug($message, array $context = [])
* @see \Illuminate\Log\Writer::critical * @see \Illuminate\Log\Writer::critical
* @method static null|void critical(string $message, array $context = []) * @method static null|void critical($message, array $context = [])
* @see \Illuminate\Log\Writer::log * @see \Illuminate\Log\Writer::log
* @method static null|void log(string $level, string $message, array $context = []) * @method static null|void log($level, $message, array $context = [])
* @see \Illuminate\Log\Writer::useDailyFiles * @see \Illuminate\Log\Writer::useDailyFiles
* @method static void useDailyFiles(string $path, int $days = 0, string $level = 'debug') * @method static void useDailyFiles($path, $days = 0, $level = 'debug')
* @see \Illuminate\Log\Writer::emergency * @see \Illuminate\Log\Writer::emergency
* @method static null|void emergency(string $message, array $context = []) * @method static null|void emergency($message, array $context = [])
* @see \Illuminate\Log\Writer::getMonolog * @see \Illuminate\Log\Writer::getMonolog
* @method static \Monolog\Logger getMonolog() * @method static \Monolog\Logger getMonolog()
* @see \Illuminate\Log\Writer::error * @see \Illuminate\Log\Writer::error
* @method static null|void error(string $message, array $context = []) * @method static null|void error($message, array $context = [])
* @see \Illuminate\Log\Writer::setEventDispatcher * @see \Illuminate\Log\Writer::setEventDispatcher
* @method static void setEventDispatcher(\Illuminate\Contracts\Events\Dispatcher $dispatcher) * @method static void setEventDispatcher(\Illuminate\Contracts\Events\Dispatcher $dispatcher)
* @see \Illuminate\Log\Writer::useFiles * @see \Illuminate\Log\Writer::useFiles
* @method static void useFiles(string $path, string $level = 'debug') * @method static void useFiles($path, $level = 'debug')
* @see \Illuminate\Log\Writer::listen * @see \Illuminate\Log\Writer::listen
* @method static void listen(\Closure $callback) * @method static void listen(\Closure $callback)
* @see \Illuminate\Log\Writer::alert * @see \Illuminate\Log\Writer::alert
* @method static null|void alert(string $message, array $context = []) * @method static null|void alert($message, array $context = [])
* @see \Illuminate\Log\Writer::getEventDispatcher * @see \Illuminate\Log\Writer::getEventDispatcher
* @method static \Illuminate\Contracts\Events\Dispatcher getEventDispatcher() * @method static \Illuminate\Contracts\Events\Dispatcher getEventDispatcher()
* @see \Illuminate\Log\Writer::warning * @see \Illuminate\Log\Writer::warning
* @method static null|void warning(string $message, array $context = []) * @method static null|void warning($message, array $context = [])
* @see \Illuminate\Log\Writer::useErrorLog * @see \Illuminate\Log\Writer::useErrorLog
* @method static void useErrorLog(string $level = 'debug', int $messageType = ErrorLogHandler::OPERATING_SYSTEM) * @method static void useErrorLog($level = 'debug', $messageType = \Monolog\Handler\ErrorLogHandler::OPERATING_SYSTEM)
* @see \Illuminate\Log\Writer::write * @see \Illuminate\Log\Writer::write
* @method static null|void write(string $level, string $message, array $context = []) * @method static null write($level, $message, array $context = [])
* @see \Illuminate\Log\Writer::info * @see \Illuminate\Log\Writer::info
* @method static null|void info(string $message, array $context = []) * @method static null|void info($message, array $context = [])
* @see \Illuminate\Log\Writer::notice * @see \Illuminate\Log\Writer::notice
* @method static null|void notice(string $message, array $context = []) * @method static null|void notice($message, array $context = [])
*/ */
class Log {} class Log {}
...@@ -1241,11 +1241,11 @@ namespace Illuminate\Support\Facades { ...@@ -1241,11 +1241,11 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest * @see \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest
* @method static bool isXmlHttpRequest() * @method static bool isXmlHttpRequest()
* @see \Illuminate\Http\Request::cookie * @see \Illuminate\Http\Request::cookie
* @method static void cookie($key = null, $default = null) * @method static array|string cookie($key = null, $default = null)
* @see \Illuminate\Http\Request::method * @see \Illuminate\Http\Request::method
* @method static string method() * @method static string method()
* @see \Illuminate\Http\Request::old * @see \Illuminate\Http\Request::old
* @method static void old($key = null, $default = null) * @method static mixed old($key = null, $default = null)
* @see \Illuminate\Http\Request::ip * @see \Illuminate\Http\Request::ip
* @method static mixed|null|string ip() * @method static mixed|null|string ip()
* @see \Symfony\Component\HttpFoundation\Request::getContent * @see \Symfony\Component\HttpFoundation\Request::getContent
...@@ -1283,7 +1283,7 @@ namespace Illuminate\Support\Facades { ...@@ -1283,7 +1283,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName * @see \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName
* @method static void setTrustedHeaderName(string $key, string $value) * @method static void setTrustedHeaderName(string $key, string $value)
* @see \Illuminate\Http\Request::server * @see \Illuminate\Http\Request::server
* @method static void server($key = null, $default = null) * @method static array|string server($key = null, $default = null)
* @see \Symfony\Component\HttpFoundation\Request::setLocale * @see \Symfony\Component\HttpFoundation\Request::setLocale
* @method static void setLocale(string $locale) * @method static void setLocale(string $locale)
* @see \Illuminate\Http\Request::setUserResolver * @see \Illuminate\Http\Request::setUserResolver
...@@ -1395,7 +1395,7 @@ namespace Illuminate\Support\Facades { ...@@ -1395,7 +1395,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::accepts * @see \Illuminate\Http\Request::accepts
* @method static bool accepts($contentTypes) * @method static bool accepts($contentTypes)
* @see \Illuminate\Http\Request::query * @see \Illuminate\Http\Request::query
* @method static void query($key = null, $default = null) * @method static array|string query($key = null, $default = null)
* @see \Illuminate\Http\Request::format * @see \Illuminate\Http\Request::format
* @method static int|mixed|string format($default = 'html') * @method static int|mixed|string format($default = 'html')
* @see \Illuminate\Http\Request::capture * @see \Illuminate\Http\Request::capture
...@@ -1411,7 +1411,7 @@ namespace Illuminate\Support\Facades { ...@@ -1411,7 +1411,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getTrustedHosts * @see \Symfony\Component\HttpFoundation\Request::getTrustedHosts
* @method static array|string[] getTrustedHosts() * @method static array|string[] getTrustedHosts()
* @see \Illuminate\Http\Request::header * @see \Illuminate\Http\Request::header
* @method static void header($key = null, $default = null) * @method static array|string header($key = null, $default = null)
* @see \Symfony\Component\HttpFoundation\Request::getBasePath * @see \Symfony\Component\HttpFoundation\Request::getBasePath
* @method static string getBasePath() * @method static string getBasePath()
* @see \Illuminate\Http\Request::offsetGet * @see \Illuminate\Http\Request::offsetGet
...@@ -1437,7 +1437,7 @@ namespace Illuminate\Support\Facades { ...@@ -1437,7 +1437,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::root * @see \Illuminate\Http\Request::root
* @method static string root() * @method static string root()
* @see \Illuminate\Http\Request::json * @see \Illuminate\Http\Request::json
* @method static mixed|\Symfony\Component\HttpFoundation\ParameterBag json($key = null, $default = null) * @method static mixed|string|\Symfony\Component\HttpFoundation\ParameterBag json($key = null, $default = null)
* @see \Illuminate\Http\Request::offsetExists * @see \Illuminate\Http\Request::offsetExists
* @method static bool offsetExists($offset) * @method static bool offsetExists($offset)
* @see \Symfony\Component\HttpFoundation\Request::getUri * @see \Symfony\Component\HttpFoundation\Request::getUri
...@@ -1465,7 +1465,7 @@ namespace Illuminate\Support\Facades { ...@@ -1465,7 +1465,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::toArray * @see \Illuminate\Http\Request::toArray
* @method static array toArray() * @method static array toArray()
* @see \Illuminate\Http\Request::allFiles * @see \Illuminate\Http\Request::allFiles
* @method static array|array[]|\array[][]|\Illuminate\Http\UploadedFile[]|\Illuminate\Http\UploadedFile[][]|null[]|\null[][] allFiles() * @method static array|array[]|\array[][]|\Illuminate\Http\UploadedFile[]|\Illuminate\Http\UploadedFile[][]|\null[][] allFiles()
* @see \Illuminate\Http\Request::user * @see \Illuminate\Http\Request::user
* @method static mixed user($guard = null) * @method static mixed user($guard = null)
* @see \Symfony\Component\HttpFoundation\Request::getLanguages * @see \Symfony\Component\HttpFoundation\Request::getLanguages
...@@ -1649,13 +1649,13 @@ namespace Illuminate\Support\Facades { ...@@ -1649,13 +1649,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Session\SessionManager::getSessionConfig * @see \Illuminate\Session\SessionManager::getSessionConfig
* @method static void getSessionConfig() * @method static void getSessionConfig()
* @see \Illuminate\Support\Manager::extend * @see \Illuminate\Support\Manager::extend
* @method static \Illuminate\Support\Manager extend($driver, \Closure $callback) * @method static \Illuminate\Support\Manager extend(string $driver, \Closure $callback)
* @see \Illuminate\Support\Manager::driver * @see \Illuminate\Support\Manager::driver
* @method static mixed driver($driver = null) * @method static mixed driver(string $driver = null)
* @see \Illuminate\Session\SessionManager::getDefaultDriver * @see \Illuminate\Session\SessionManager::getDefaultDriver
* @method static string getDefaultDriver() * @method static string getDefaultDriver()
* @see \Illuminate\Support\Manager::getDrivers * @see \Illuminate\Support\Manager::getDrivers
* @method static array|mixed getDrivers() * @method static array getDrivers()
* @see \Illuminate\Session\Store::regenerateToken * @see \Illuminate\Session\Store::regenerateToken
* @method static void regenerateToken() * @method static void regenerateToken()
* @see \Illuminate\Session\Store::handlerNeedsRequest * @see \Illuminate\Session\Store::handlerNeedsRequest
...@@ -1667,87 +1667,87 @@ namespace Illuminate\Support\Facades { ...@@ -1667,87 +1667,87 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Session\Store::flashInput * @see \Illuminate\Session\Store::flashInput
* @method static void flashInput(array $value) * @method static void flashInput(array $value)
* @see \Illuminate\Session\Store::getBagData * @see \Illuminate\Session\Store::getBagData
* @method static mixed getBagData($name) * @method static array getBagData(string $name)
* @see \Illuminate\Session\Store::setRequestOnHandler * @see \Illuminate\Session\Store::setRequestOnHandler
* @method static void setRequestOnHandler(\Symfony\Component\HttpFoundation\Request $request) * @method static void setRequestOnHandler(\Symfony\Component\HttpFoundation\Request $request)
* @see \Illuminate\Session\Store::put * @see \Illuminate\Session\Store::put
* @method static void put($key, $value = null) * @method static void put(array|string $key, $value = null)
* @see \Illuminate\Session\Store::getToken * @see \Illuminate\Session\Store::getToken
* @method static mixed getToken() * @method static string getToken()
* @see \Illuminate\Session\Store::previousUrl * @see \Illuminate\Session\Store::previousUrl
* @method static mixed previousUrl() * @method static null|string previousUrl()
* @see \Illuminate\Session\Store::has * @see \Illuminate\Session\Store::has
* @method static bool has($name) * @method static bool has($name)
* @see \Illuminate\Session\Store::all * @see \Illuminate\Session\Store::all
* @method static array|mixed all() * @method static array|mixed all()
* @see \Illuminate\Session\Store::setPreviousUrl * @see \Illuminate\Session\Store::setPreviousUrl
* @method static null setPreviousUrl($url) * @method static null|void setPreviousUrl(string $url)
* @see \Illuminate\Session\Store::getId * @see \Illuminate\Session\Store::getId
* @method static string getId() * @method static string getId()
* @see \Illuminate\Session\Store::isValidId * @see \Illuminate\Session\Store::isValidId
* @method static bool isValidId($id) * @method static bool isValidId(string $id)
* @see \Illuminate\Session\Store::push * @see \Illuminate\Session\Store::push
* @method static void push($key, $value) * @method static void push(string $key, $value)
* @see \Illuminate\Session\Store::setName * @see \Illuminate\Session\Store::setName
* @method static void setName($name) * @method static void setName($name)
* @see \Illuminate\Session\Store::reflash * @see \Illuminate\Session\Store::reflash
* @method static void reflash() * @method static void reflash()
* @see \Illuminate\Session\Store::forget * @see \Illuminate\Session\Store::forget
* @method static void forget($keys) * @method static void forget(array|string $keys)
* @see \Illuminate\Session\Store::setExists * @see \Illuminate\Session\Store::setExists
* @method static void setExists($value) * @method static void setExists(bool $value)
* @see \Illuminate\Session\Store::regenerate * @see \Illuminate\Session\Store::regenerate
* @method static true regenerate($destroy = false) * @method static bool regenerate(bool $destroy = false)
* @see \Illuminate\Session\Store::isStarted * @see \Illuminate\Session\Store::isStarted
* @method static bool|mixed isStarted() * @method static bool|mixed isStarted()
* @see \Illuminate\Session\Store::keep * @see \Illuminate\Session\Store::keep
* @method static void keep($keys = null) * @method static void keep(array|mixed $keys = null)
* @see \Illuminate\Session\Store::getOldInput * @see \Illuminate\Session\Store::getOldInput
* @method static mixed getOldInput($key = null, $default = null) * @method static mixed getOldInput(string $key = null, $default = null)
* @see \Illuminate\Session\Store::migrate * @see \Illuminate\Session\Store::migrate
* @method static true migrate($destroy = false, $lifetime = null) * @method static bool migrate($destroy = false, $lifetime = null)
* @see \Illuminate\Session\Store::flash * @see \Illuminate\Session\Store::flash
* @method static void flash($key, $value) * @method static void flash(string $key, $value)
* @see \Illuminate\Session\Store::hasOldInput * @see \Illuminate\Session\Store::hasOldInput
* @method static bool hasOldInput($key = null) * @method static bool hasOldInput(string $key = null)
* @see \Illuminate\Session\Store::getMetadataBag * @see \Illuminate\Session\Store::getMetadataBag
* @method static \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag getMetadataBag() * @method static \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag getMetadataBag()
* @see \Illuminate\Session\Store::save * @see \Illuminate\Session\Store::save
* @method static void save() * @method static void save()
* @see \Illuminate\Session\Store::increment * @see \Illuminate\Session\Store::increment
* @method static int|mixed increment($key, $amount = 1) * @method static int|mixed increment(string $key, int $amount = 1)
* @see \Illuminate\Session\Store::remove * @see \Illuminate\Session\Store::remove
* @method static mixed remove($name) * @method static array|\ArrayAccess|mixed remove($name)
* @see \Illuminate\Session\Store::flush * @see \Illuminate\Session\Store::flush
* @method static void flush() * @method static void flush()
* @see \Illuminate\Session\Store::get * @see \Illuminate\Session\Store::get
* @method static mixed get($name, $default = null) * @method static array|\ArrayAccess|mixed get($name, $default = null)
* @see \Illuminate\Session\Store::now * @see \Illuminate\Session\Store::now
* @method static void now($key, $value) * @method static void now(string $key, $value)
* @see \Illuminate\Session\Store::registerBag * @see \Illuminate\Session\Store::registerBag
* @method static void registerBag(\Symfony\Component\HttpFoundation\Session\SessionBagInterface $bag) * @method static void registerBag(\Symfony\Component\HttpFoundation\Session\SessionBagInterface $bag)
* @see \Illuminate\Session\Store::set * @see \Illuminate\Session\Store::set
* @method static void set($name, $value) * @method static void set($name, $value)
* @see \Illuminate\Session\Store::start * @see \Illuminate\Session\Store::start
* @method static true start() * @method static bool start()
* @see \Illuminate\Session\Store::clear * @see \Illuminate\Session\Store::clear
* @method static void clear() * @method static void clear()
* @see \Illuminate\Session\Store::getHandler * @see \Illuminate\Session\Store::getHandler
* @method static \SessionHandlerInterface getHandler() * @method static \SessionHandlerInterface getHandler()
* @see \Illuminate\Session\Store::invalidate * @see \Illuminate\Session\Store::invalidate
* @method static true invalidate($lifetime = null) * @method static bool invalidate($lifetime = null)
* @see \Illuminate\Session\Store::token * @see \Illuminate\Session\Store::token
* @method static mixed token() * @method static string token()
* @see \Illuminate\Session\Store::getName * @see \Illuminate\Session\Store::getName
* @method static string getName() * @method static string getName()
* @see \Illuminate\Session\Store::pull * @see \Illuminate\Session\Store::pull
* @method static mixed pull($key, $default = null) * @method static mixed pull(string $key, string $default = null)
* @see \Illuminate\Session\Store::decrement * @see \Illuminate\Session\Store::decrement
* @method static int|mixed decrement($key, $amount = 1) * @method static int decrement(string $key, int $amount = 1)
* @see \Illuminate\Session\Store::setId * @see \Illuminate\Session\Store::setId
* @method static void setId($id) * @method static void setId($id)
* @see \Illuminate\Session\Store::getBag * @see \Illuminate\Session\Store::getBag
* @method static mixed|\Symfony\Component\HttpFoundation\Session\SessionBagInterface getBag($name) * @method static array|\ArrayAccess|mixed|\Symfony\Component\HttpFoundation\Session\SessionBagInterface getBag($name)
*/ */
class Session {} class Session {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment