Commit 0b811c38 by 杨树贤

优化查询

parent c54e082c
......@@ -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 */
namespace Illuminate\Support\Facades {
......@@ -7,13 +7,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::basePath
* @method static string basePath()
* @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
* @method static string path()
* @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
* @method static array tagged(string $tag)
* @method static array tagged($tag)
* @see \Illuminate\Foundation\Application::setDeferredServices
* @method static void setDeferredServices(array $services)
* @see \Illuminate\Foundation\Application::hasMonologConfigurator
......@@ -23,21 +23,21 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::registerDeferredProvider
* @method static void registerDeferredProvider($provider, $service = null)
* @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
* @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
* @method static string version()
* @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
* @method static void extend(string $abstract, \Closure $closure)
* @method static void extend($abstract, \Closure $closure)
* @see \Illuminate\Foundation\Application::useStoragePath
* @method static \Illuminate\Foundation\Application useStoragePath($path)
* @see \Illuminate\Foundation\Application::hasBeenBootstrapped
* @method static bool|mixed hasBeenBootstrapped()
* @see \Illuminate\Container\Container::offsetUnset
* @method static void offsetUnset(string $key)
* @method static void offsetUnset($key)
* @see \Illuminate\Foundation\Application::loadEnvironmentFrom
* @method static \Illuminate\Foundation\Application loadEnvironmentFrom($file)
* @see \Illuminate\Container\Container::setInstance
......@@ -61,7 +61,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::getCachedServicesPath
* @method static string getCachedServicesPath()
* @see \Illuminate\Container\Container::isAlias
* @method static bool isAlias(string $name)
* @method static bool isAlias($name)
* @see \Illuminate\Foundation\Application::registerConfiguredProviders
* @method static void registerConfiguredProviders()
* @see \Illuminate\Foundation\Application::isLocale
......@@ -71,11 +71,11 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::getNamespace
* @method static int|mixed|null|string getNamespace()
* @see \Illuminate\Container\Container::resolved
* @method static bool resolved(string $abstract)
* @method static bool resolved($abstract)
* @see \Illuminate\Foundation\Application::getProvider
* @method static false|mixed getProvider($provider)
* @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
* @method static void registerCoreContainerAliases()
* @see \Illuminate\Foundation\Application::useDatabasePath
......@@ -87,7 +87,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::shouldSkipMiddleware
* @method static bool shouldSkipMiddleware()
* @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
* @method static void getLocale()
* @see \Illuminate\Foundation\Application::terminating
......@@ -103,7 +103,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::addDeferredServices
* @method static void addDeferredServices(array $services)
* @see \Illuminate\Container\Container::instance
* @method static void instance(string $abstract, $instance)
* @method static void instance($abstract, $instance)
* @see \Illuminate\Foundation\Application::configureMonologUsing
* @method static \Illuminate\Foundation\Application configureMonologUsing(callable $callback)
* @see \Illuminate\Foundation\Application::databasePath
......@@ -121,11 +121,11 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::routesAreCached
* @method static void routesAreCached()
* @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
* @method static string publicPath()
* @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
* @method static bool isDownForMaintenance()
* @see \Illuminate\Foundation\Application::loadDeferredProviders
......@@ -133,7 +133,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::abort
* @method static void abort($code, $message = '', array $headers = [])
* @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
* @method static void afterBootstrapping($bootstrapper, \Closure $callback)
* @see \Illuminate\Foundation\Application::configurationIsCached
......@@ -141,35 +141,35 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::runningInConsole
* @method static bool runningInConsole()
* @see \Illuminate\Container\Container::offsetGet
* @method static mixed offsetGet(string $key)
* @method static mixed|null|object offsetGet($key)
* @see \Illuminate\Foundation\Application::langPath
* @method static string langPath()
* @see \Illuminate\Container\Container::offsetSet
* @method static void offsetSet(string $key, $value)
* @method static void offsetSet($key, $value)
* @see \Illuminate\Foundation\Application::flush
* @method static void flush()
* @see \Illuminate\Container\Container::alias
* @method static void alias(string $abstract, string $alias)
* @method static void alias($abstract, $alias)
* @see \Illuminate\Container\Container::offsetExists
* @method static bool offsetExists(string $key)
* @method static bool offsetExists($key)
* @see \Illuminate\Foundation\Application::afterLoadingEnvironment
* @method static null afterLoadingEnvironment(\Closure $callback)
* @see \Illuminate\Foundation\Application::boot
* @method static void boot()
* @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
* @method static callable|null getMonologConfigurator()
* @see \Illuminate\Foundation\Application::bootstrapWith
* @method static void bootstrapWith(array $bootstrappers)
* @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
* @method static void forgetInstance(string $abstract)
* @method static void forgetInstance($abstract)
* @see \Illuminate\Container\Container::isShared
* @method static bool isShared(string $abstract)
* @method static bool isShared($abstract)
* @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
* @method static bool bound($abstract)
* @see \Illuminate\Foundation\Application::isBooted
......@@ -177,7 +177,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::getCachedRoutesPath
* @method static string getCachedRoutesPath()
* @see \Illuminate\Container\Container::getBindings
* @method static array getBindings()
* @method static array|mixed getBindings()
* @see \Illuminate\Foundation\Application::useEnvironmentPath
* @method static \Illuminate\Foundation\Application useEnvironmentPath($path)
* @see \Illuminate\Foundation\Application::setBasePath
......@@ -187,7 +187,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::isDeferredService
* @method static bool isDeferredService($service)
* @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
* @method static string getCachedConfigPath()
* @see \Illuminate\Foundation\Application::configPath
......@@ -215,29 +215,29 @@ namespace Illuminate\Support\Facades {
/**
* @see \Illuminate\Auth\AuthManager::setDefaultDriver
* @method static void setDefaultDriver(string $name)
* @method static void setDefaultDriver($name)
* @see \Illuminate\Auth\AuthManager::shouldUse
* @method static void shouldUse(string $name)
* @method static void shouldUse($name)
* @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
* @method static \Illuminate\Contracts\Auth\UserProvider createUserProvider(string $provider)
* @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
* @method static \Illuminate\Auth\AuthManager viaRequest(string $driver, callable $callback)
* @method static \Illuminate\Auth\AuthManager viaRequest($driver, callable $callback)
* @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
* @method static \Illuminate\Auth\AuthManager provider(string $name, \Closure $callback)
* @method static \Illuminate\Auth\AuthManager provider($name, \Closure $callback)
* @see \Illuminate\Auth\AuthManager::userResolver
* @method static \Closure userResolver()
* @see \Illuminate\Auth\AuthManager::resolveUsersUsing
* @method static \Illuminate\Auth\AuthManager resolveUsersUsing(\Closure $userResolver)
* @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
* @method static string getDefaultDriver()
* @method static void getDefaultDriver()
* @see \Illuminate\Contracts\Auth\Guard::setUser
* @method static void setUser(\Illuminate\Contracts\Auth\Authenticatable $user)
* @see \Illuminate\Contracts\Auth\Guard::guest
......@@ -251,69 +251,69 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Contracts\Auth\Guard::validate
* @method static bool validate(array $credentials = [])
* @see \Illuminate\Contracts\Auth\StatefulGuard::onceUsingId
* @method static void onceUsingId($id)
* @method static bool onceUsingId($id)
* @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
* @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
* @method static void viaRemember()
* @method static bool viaRemember()
* @see \Illuminate\Contracts\Auth\StatefulGuard::logout
* @method static void logout()
* @see \Illuminate\Contracts\Auth\StatefulGuard::once
* @method static void once(array $credentials = [])
* @method static bool once(array $credentials = [])
* @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 {}
/**
* @see \Illuminate\View\Compilers\BladeCompiler::getCustomDirectives
* @method static array|mixed getCustomDirectives()
* @method static array getCustomDirectives()
* @see \Illuminate\View\Compilers\BladeCompiler::setEchoFormat
* @method static void setEchoFormat($format)
* @method static void setEchoFormat(string $format)
* @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
* @method static bool isExpired(string $path)
* @see \Illuminate\View\Compilers\BladeCompiler::extend
* @method static void extend(callable $compiler)
* @see \Illuminate\View\Compilers\BladeCompiler::getContentTags
* @method static array getContentTags()
* @method static array|string getContentTags()
* @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
* @method static string getCompiledPath(string $path)
* @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
* @method static mixed|string[] getRawTags()
* @method static array|string[] getRawTags()
* @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
* @method static void setPath($path)
* @method static void setPath(string $path)
* @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
* @method static string getPath()
* @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
* @method static void directive($name, callable $handler)
* @method static void directive(string $name, callable $handler)
* @see \Illuminate\View\Compilers\BladeCompiler::getEscapedContentTags
* @method static array getEscapedContentTags()
* @method static array|string getEscapedContentTags()
* @see \Illuminate\View\Compilers\BladeCompiler::getExtensions
* @method static array|mixed getExtensions()
* @method static array getExtensions()
*/
class Blade {}
/**
* @see \Illuminate\Contracts\Bus\Dispatcher::dispatch
* @method static void dispatch($command)
* @method static mixed dispatch($command)
* @see \Illuminate\Contracts\Bus\Dispatcher::dispatchNow
* @method static void dispatchNow($command)
* @method static mixed dispatchNow($command)
* @see \Illuminate\Contracts\Bus\Dispatcher::pipeThrough
* @method static void pipeThrough(array $pipes)
* @method static \Illuminate\Contracts\Bus\Dispatcher pipeThrough(array $pipes)
*/
class Bus {}
......@@ -385,13 +385,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Config\Repository::all
* @method static array|mixed all()
* @see \Illuminate\Config\Repository::offsetGet
* @method static mixed offsetGet($key)
* @method static array|\ArrayAccess|mixed offsetGet($key)
* @see \Illuminate\Config\Repository::set
* @method static void set($key, $value = null)
* @see \Illuminate\Config\Repository::offsetUnset
* @method static void offsetUnset($key)
* @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
* @method static void prepend($key, $value)
* @see \Illuminate\Config\Repository::offsetExists
......@@ -407,21 +407,21 @@ namespace Illuminate\Support\Facades {
/**
* @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
* @method static bool hasQueued($key)
* @method static bool hasQueued(string $key)
* @see \Illuminate\Cookie\CookieJar::unqueue
* @method static void unqueue($name)
* @method static void unqueue(string $name)
* @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
* @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
* @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
* @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
* @method static array|mixed getQueuedCookies()
* @method static array getQueuedCookies()
* @see \Illuminate\Cookie\CookieJar::queue
* @method static void queue()
*/
......@@ -429,35 +429,35 @@ namespace Illuminate\Support\Facades {
/**
* @see \Illuminate\Encryption\Encrypter::encrypt
* @method static string encrypt(string $value)
* @method static string encrypt($value)
* @see \Illuminate\Encryption\Encrypter::decrypt
* @method static string decrypt(string $payload)
* @method static mixed|string decrypt($payload)
* @see \Illuminate\Encryption\Encrypter::supported
* @method static bool supported(string $key, string $cipher)
* @method static bool supported($key, $cipher)
*/
class Crypt {}
/**
* @see \Illuminate\Database\DatabaseManager::setDefaultConnection
* @method static void setDefaultConnection(string $name)
* @method static void setDefaultConnection($name)
* @see \Illuminate\Database\DatabaseManager::disconnect
* @method static void disconnect(string $name = null)
* @method static void disconnect($name = null)
* @see \Illuminate\Database\DatabaseManager::supportedDrivers
* @method static array|string[] supportedDrivers()
* @method static string[] supportedDrivers()
* @see \Illuminate\Database\DatabaseManager::getConnections
* @method static array getConnections()
* @method static array|mixed getConnections()
* @see \Illuminate\Database\DatabaseManager::purge
* @method static void purge(string $name = null)
* @method static void purge($name = null)
* @see \Illuminate\Database\DatabaseManager::getDefaultConnection
* @method static string getDefaultConnection()
* @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
* @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
* @method static array availableDrivers()
* @method static array|string[] availableDrivers()
* @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
* @method static void logQuery(string $query, array $bindings, float|null $time = null)
* @see \Illuminate\Database\Connection::getPostProcessor
......@@ -585,33 +585,33 @@ namespace Illuminate\Support\Facades {
/**
* @see \Illuminate\Events\Dispatcher::hasListeners
* @method static bool hasListeners($eventName)
* @method static bool hasListeners(string $eventName)
* @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
* @method static void flush($event)
* @method static void flush(string $event)
* @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
* @method static \Closure makeListener($listener)
* @method static \Closure|mixed makeListener($listener)
* @see \Illuminate\Events\Dispatcher::setQueueResolver
* @method static \Illuminate\Events\Dispatcher setQueueResolver(callable $resolver)
* @see \Illuminate\Events\Dispatcher::subscribe
* @method static void subscribe($subscriber)
* @method static void subscribe(object|string $subscriber)
* @see \Illuminate\Events\Dispatcher::push
* @method static void push($event, $payload = [])
* @method static void push(string $event, array $payload = [])
* @see \Illuminate\Events\Dispatcher::forget
* @method static void forget($event)
* @method static void forget(string $event)
* @see \Illuminate\Events\Dispatcher::firing
* @method static mixed|string firing()
* @method static string firing()
* @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
* @method static void forgetPushed()
* @see \Illuminate\Events\Dispatcher::createClassListener
* @method static \Closure createClassListener($listener)
* @see \Illuminate\Events\Dispatcher::getListeners
* @method static void getListeners($eventName)
* @method static array getListeners(string $eventName)
*/
class Event {}
......@@ -687,33 +687,33 @@ namespace Illuminate\Support\Facades {
/**
* @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
* @method static \Illuminate\Contracts\Auth\Access\Gate before(callable $callback)
* @method static void before(callable $callback)
* @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
* @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
* @method static bool has(string $ability)
* @method static void has($ability)
* @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
* @method static bool denies(string $ability, array|mixed $arguments = [])
* @method static void denies($ability, $arguments = [])
* @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 {}
/**
* @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
* @method static bool needsRehash(string $hashedValue, array $options = [])
* @method static bool needsRehash($hashedValue, array $options = [])
* @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
* @method static string make(string $value, array $options = [])
* @method static null|string make($value, array $options = [])
*/
class Hash {}
......@@ -751,11 +751,11 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest
* @method static bool isXmlHttpRequest()
* @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
* @method static string method()
* @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
* @method static mixed|null|string ip()
* @see \Symfony\Component\HttpFoundation\Request::getContent
......@@ -793,7 +793,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName
* @method static void setTrustedHeaderName(string $key, string $value)
* @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
* @method static void setLocale(string $locale)
* @see \Illuminate\Http\Request::setUserResolver
......@@ -905,7 +905,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::accepts
* @method static bool accepts($contentTypes)
* @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
* @method static int|mixed|string format($default = 'html')
* @see \Illuminate\Http\Request::capture
......@@ -921,7 +921,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getTrustedHosts
* @method static array|string[] getTrustedHosts()
* @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
* @method static string getBasePath()
* @see \Illuminate\Http\Request::offsetGet
......@@ -947,7 +947,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::root
* @method static string root()
* @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
* @method static bool offsetExists($offset)
* @see \Symfony\Component\HttpFoundation\Request::getUri
......@@ -975,7 +975,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::toArray
* @method static array toArray()
* @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
* @method static mixed user($guard = null)
* @see \Symfony\Component\HttpFoundation\Request::getLanguages
......@@ -1025,41 +1025,41 @@ namespace Illuminate\Support\Facades {
/**
* @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
* @method static null|void debug(string $message, array $context = [])
* @method static null|void debug($message, array $context = [])
* @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
* @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
* @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
* @method static null|void emergency(string $message, array $context = [])
* @method static null|void emergency($message, array $context = [])
* @see \Illuminate\Log\Writer::getMonolog
* @method static \Monolog\Logger getMonolog()
* @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
* @method static void setEventDispatcher(\Illuminate\Contracts\Events\Dispatcher $dispatcher)
* @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
* @method static void listen(\Closure $callback)
* @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
* @method static \Illuminate\Contracts\Events\Dispatcher getEventDispatcher()
* @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
* @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
* @method static null|void write(string $level, string $message, array $context = [])
* @method static null write($level, $message, array $context = [])
* @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
* @method static null|void notice(string $message, array $context = [])
* @method static null|void notice($message, array $context = [])
*/
class Log {}
......@@ -1241,11 +1241,11 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest
* @method static bool isXmlHttpRequest()
* @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
* @method static string method()
* @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
* @method static mixed|null|string ip()
* @see \Symfony\Component\HttpFoundation\Request::getContent
......@@ -1283,7 +1283,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName
* @method static void setTrustedHeaderName(string $key, string $value)
* @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
* @method static void setLocale(string $locale)
* @see \Illuminate\Http\Request::setUserResolver
......@@ -1395,7 +1395,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::accepts
* @method static bool accepts($contentTypes)
* @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
* @method static int|mixed|string format($default = 'html')
* @see \Illuminate\Http\Request::capture
......@@ -1411,7 +1411,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getTrustedHosts
* @method static array|string[] getTrustedHosts()
* @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
* @method static string getBasePath()
* @see \Illuminate\Http\Request::offsetGet
......@@ -1437,7 +1437,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::root
* @method static string root()
* @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
* @method static bool offsetExists($offset)
* @see \Symfony\Component\HttpFoundation\Request::getUri
......@@ -1465,7 +1465,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::toArray
* @method static array toArray()
* @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
* @method static mixed user($guard = null)
* @see \Symfony\Component\HttpFoundation\Request::getLanguages
......@@ -1649,13 +1649,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Session\SessionManager::getSessionConfig
* @method static void getSessionConfig()
* @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
* @method static mixed driver($driver = null)
* @method static mixed driver(string $driver = null)
* @see \Illuminate\Session\SessionManager::getDefaultDriver
* @method static string getDefaultDriver()
* @see \Illuminate\Support\Manager::getDrivers
* @method static array|mixed getDrivers()
* @method static array getDrivers()
* @see \Illuminate\Session\Store::regenerateToken
* @method static void regenerateToken()
* @see \Illuminate\Session\Store::handlerNeedsRequest
......@@ -1667,87 +1667,87 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Session\Store::flashInput
* @method static void flashInput(array $value)
* @see \Illuminate\Session\Store::getBagData
* @method static mixed getBagData($name)
* @method static array getBagData(string $name)
* @see \Illuminate\Session\Store::setRequestOnHandler
* @method static void setRequestOnHandler(\Symfony\Component\HttpFoundation\Request $request)
* @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
* @method static mixed getToken()
* @method static string getToken()
* @see \Illuminate\Session\Store::previousUrl
* @method static mixed previousUrl()
* @method static null|string previousUrl()
* @see \Illuminate\Session\Store::has
* @method static bool has($name)
* @see \Illuminate\Session\Store::all
* @method static array|mixed all()
* @see \Illuminate\Session\Store::setPreviousUrl
* @method static null setPreviousUrl($url)
* @method static null|void setPreviousUrl(string $url)
* @see \Illuminate\Session\Store::getId
* @method static string getId()
* @see \Illuminate\Session\Store::isValidId
* @method static bool isValidId($id)
* @method static bool isValidId(string $id)
* @see \Illuminate\Session\Store::push
* @method static void push($key, $value)
* @method static void push(string $key, $value)
* @see \Illuminate\Session\Store::setName
* @method static void setName($name)
* @see \Illuminate\Session\Store::reflash
* @method static void reflash()
* @see \Illuminate\Session\Store::forget
* @method static void forget($keys)
* @method static void forget(array|string $keys)
* @see \Illuminate\Session\Store::setExists
* @method static void setExists($value)
* @method static void setExists(bool $value)
* @see \Illuminate\Session\Store::regenerate
* @method static true regenerate($destroy = false)
* @method static bool regenerate(bool $destroy = false)
* @see \Illuminate\Session\Store::isStarted
* @method static bool|mixed isStarted()
* @see \Illuminate\Session\Store::keep
* @method static void keep($keys = null)
* @method static void keep(array|mixed $keys = null)
* @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
* @method static true migrate($destroy = false, $lifetime = null)
* @method static bool migrate($destroy = false, $lifetime = null)
* @see \Illuminate\Session\Store::flash
* @method static void flash($key, $value)
* @method static void flash(string $key, $value)
* @see \Illuminate\Session\Store::hasOldInput
* @method static bool hasOldInput($key = null)
* @method static bool hasOldInput(string $key = null)
* @see \Illuminate\Session\Store::getMetadataBag
* @method static \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag getMetadataBag()
* @see \Illuminate\Session\Store::save
* @method static void save()
* @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
* @method static mixed remove($name)
* @method static array|\ArrayAccess|mixed remove($name)
* @see \Illuminate\Session\Store::flush
* @method static void flush()
* @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
* @method static void now($key, $value)
* @method static void now(string $key, $value)
* @see \Illuminate\Session\Store::registerBag
* @method static void registerBag(\Symfony\Component\HttpFoundation\Session\SessionBagInterface $bag)
* @see \Illuminate\Session\Store::set
* @method static void set($name, $value)
* @see \Illuminate\Session\Store::start
* @method static true start()
* @method static bool start()
* @see \Illuminate\Session\Store::clear
* @method static void clear()
* @see \Illuminate\Session\Store::getHandler
* @method static \SessionHandlerInterface getHandler()
* @see \Illuminate\Session\Store::invalidate
* @method static true invalidate($lifetime = null)
* @method static bool invalidate($lifetime = null)
* @see \Illuminate\Session\Store::token
* @method static mixed token()
* @method static string token()
* @see \Illuminate\Session\Store::getName
* @method static string getName()
* @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
* @method static int|mixed decrement($key, $amount = 1)
* @method static int decrement(string $key, int $amount = 1)
* @see \Illuminate\Session\Store::setId
* @method static void setId($id)
* @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 {}
......
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