Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
liexin_supplier
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7a92d4fc
authored
Jul 18, 2023
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
代购类型
parent
5817e308
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
247 additions
and
224 deletions
app/Http/Controllers/Api/SupplierApiController.php
app/Http/Services/SupplierContactService.php
app/Http/Transformers/SupplierTransformer.php
config/field.php
config/validate.php
resources/views/web/AddSupplier.blade.php
resources/views/web/supplier/SupplierBase.blade.php
vendor/_laravel_idea/_ide_helper_facades.php
app/Http/Controllers/Api/SupplierApiController.php
View file @
7a92d4fc
...
...
@@ -97,6 +97,7 @@ class SupplierApiController extends Controller
'is_business_abnormal'
,
'has_legal_ID_card'
,
'agency_brands'
,
'purchase_type'
,
];
public
function
Entrance
(
Request
$request
,
$id
)
...
...
@@ -147,7 +148,6 @@ class SupplierApiController extends Controller
'account_adderss'
,
'certificate'
,
'swift_code'
,
]);
$channel
=
$request
->
only
(
$channelMap
);
//如果是有直接新增权限的(绕过天眼查等校验)
...
...
app/Http/Services/SupplierContactService.php
View file @
7a92d4fc
...
...
@@ -88,15 +88,6 @@ class SupplierContactService
$newContact
=
$model
->
where
(
'contact_id'
,
$contactId
)
->
first
()
->
toArray
();
if
(
$result
)
{
// $needAudit = $this->checkNeedAudit($oldContact, $newContact);
// if ($needAudit) {
// //修改供应商为审核状态
// $supplierModel->where('supplier_id', $contact['supplier_id'])->update([
// 'update_time' => time(),
// 'status' => SupplierChannelModel::STATUS_PENDING,
// ]);
// }
$logService
=
new
LogService
();
$content
=
!
empty
(
$contact
[
'contact_id'
])
?
'修改联系人'
:
'添加联系人'
;
$remark
=
json_encode
([
...
...
app/Http/Transformers/SupplierTransformer.php
View file @
7a92d4fc
...
...
@@ -209,6 +209,7 @@ class SupplierTransformer
array_get
(
$supplier
,
'has_certification'
,
''
),
''
);
$supplier
[
'sku_tag_name'
]
=
array_get
(
config
(
'field.SkuTag'
),
array_get
(
$supplier
,
'sku_tag'
,
''
),
'无'
);
$supplier
[
'sku_mode_name'
]
=
array_get
(
config
(
'field.SkuMode'
),
array_get
(
$supplier
,
'sku_mode'
,
''
),
'无'
);
$supplier
[
'purchase_type'
]
=
array_get
(
config
(
'field.PurchaseType'
),
array_get
(
$supplier
,
'purchase_type'
,
''
),
'无'
);
return
$supplier
;
}
...
...
config/field.php
View file @
7a92d4fc
...
...
@@ -269,4 +269,11 @@ return [
1
=>
'小于'
,
2
=>
'大于等于'
],
//代购类型
'PurchaseType'
=>
[
1
=>
'国内代购'
,
2
=>
'海外代购'
,
3
=>
'非代购'
,
]
];
\ No newline at end of file
config/validate.php
View file @
7a92d4fc
...
...
@@ -56,5 +56,6 @@ return [
'ticket_time'
=>
'到票时间'
,
'billing_period_detail'
=>
'账期详情'
,
'registered_capital'
=>
'注册资金(万)'
,
'purchase_type'
=>
'代购类型'
,
]
];
\ No newline at end of file
resources/views/web/AddSupplier.blade.php
View file @
7a92d4fc
...
...
@@ -220,7 +220,8 @@
id=
"main_brands"
>
</div>
<a
style=
"color: #009688;"
id=
"batchAddMainBrands"
>
+批量增加主营品牌
</a>
<div
id=
"batchAddMainBrandsDiv"
style=
"padding-left: 30px;padding-top: 30px;padding-right: 30px;display: none"
>
<div
id=
"batchAddMainBrandsDiv"
style=
"padding-left: 30px;padding-top: 30px;padding-right: 30px;display: none"
>
<div
class=
"layui-col-md12"
>
<textarea
rows=
"7"
placeholder=
"标准品牌名称,多个用英文逗号隔开"
class=
"layui-textarea"
id=
"batchAddMainBrandsTextarea"
></textarea>
...
...
@@ -228,8 +229,12 @@
<span
style=
"color: red"
id=
"invalid_${name}_name_list"
></span>
</div>
<div
class=
"layui-col-md12"
>
<button
class=
"layui-btn layui-btn-sm"
type=
"button"
id=
"confirmBatchAddMainBrands"
>
验证并且添加
</button>
<button
class=
"layui-btn layui-btn-sm layui-btn-primary"
type=
"button"
id=
"closeBatchAddMainBrands"
>
关闭
</button>
<button
class=
"layui-btn layui-btn-sm"
type=
"button"
id=
"confirmBatchAddMainBrands"
>
验证并且添加
</button>
<button
class=
"layui-btn layui-btn-sm layui-btn-primary"
type=
"button"
id=
"closeBatchAddMainBrands"
>
关闭
</button>
</div>
</div>
</div>
...
...
@@ -246,16 +251,24 @@
</div>
</div>
<div
class=
"layui-form-item"
>
<div
class=
"layui-inline"
>
<label
class=
"layui-form-label"
><span
class=
"require"
>
*
</span>
合作类型
</label>
<div
class=
"layui-input-block"
>
<input
type=
"hidden"
name=
"stockup_type"
value=
"{{$supplier['stockup_type'] or ''}}"
>
@foreach(config('fixed.StockupType') as $k=>$type)
<input
type=
"checkbox"
name=
"stockup_type[{{$k}}]"
lay-filter=
"stockup_type_filter"
lay-skin=
"primary"
title=
"{{$type}}"
>
@endforeach
<div
class=
"layui-col-md6"
>
<div
class=
"layui-inline"
>
<label
class=
"layui-form-label"
><span
class=
"require"
>
*
</span>
合作类型
</label>
<div
class=
"layui-input-block"
>
<input
type=
"hidden"
name=
"stockup_type"
value=
"{{$supplier['stockup_type'] or ''}}"
>
@foreach(config('fixed.StockupType') as $k=>$type)
<input
type=
"checkbox"
name=
"stockup_type[{{$k}}]"
lay-filter=
"stockup_type_filter"
lay-skin=
"primary"
title=
"{{$type}}"
>
@endforeach
</div>
</div>
</div>
<div
class=
"layui-col-md6"
>
<div
class=
"layui-inline"
>
@inject('statusPresenter','App\Presenters\StatusPresenter')
{!! $statusPresenter->render('purchase_type','代购类型 : ',!empty($supplier)?$supplier['purchase_type']:'',config('field.PurchaseType')) !!}
</div>
</div>
</div>
...
...
resources/views/web/supplier/SupplierBase.blade.php
View file @
7a92d4fc
...
...
@@ -256,17 +256,25 @@
</div>
</div>
<div
class=
"layui-form-item"
>
<div
class=
"layui-inline"
>
<label
class=
"layui-form-label"
><span
class=
"require"
>
*
</span>
合作类型
</label>
<div
class=
"layui-input-block"
>
@foreach(config('fixed.StockupType') as $k=>$type)
<input
type=
"checkbox"
lay-filter=
"stockup_type_filter"
name=
"stockup_type[{{$k}}]"
lay-skin=
"primary"
@
if
(!
empty
($
supplier
['
stockup_type_data
'])&&
in_array
($
k
,$
supplier
['
stockup_type_data
']))
checked
@
endif
title=
"{{$type}}"
>
@endforeach
<div
class=
"layui-col-md6"
>
<div
class=
"layui-inline"
>
<label
class=
"layui-form-label"
><span
class=
"require"
>
*
</span>
合作类型
</label>
<div
class=
"layui-input-block"
>
@foreach(config('fixed.StockupType') as $k=>$type)
<input
type=
"checkbox"
lay-filter=
"stockup_type_filter"
name=
"stockup_type[{{$k}}]"
lay-skin=
"primary"
@
if
(!
empty
($
supplier
['
stockup_type_data
'])&&
in_array
($
k
,$
supplier
['
stockup_type_data
']))
checked
@
endif
title=
"{{$type}}"
>
@endforeach
</div>
</div>
</div>
<div
class=
"layui-col-md6"
>
<div
class=
"layui-inline"
>
@inject('statusPresenter','App\Presenters\StatusPresenter')
{!! $statusPresenter->render('purchase_type','代购类型 : ',!empty($supplier)?$supplier['purchase_type']:'',config('field.PurchaseType')) !!}
</div>
</div>
</div>
...
...
vendor/_laravel_idea/_ide_helper_facades.php
View file @
7a92d4fc
<?php
//
4bb7646dd6dfea03c51428d2ddea97c2
<?php
//
3e2415e87294d82b077effb84f44bd4e
/** @noinspection all */
namespace
Illuminate\Support\Facades
{
...
...
@@ -19,9 +19,9 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::hasMonologConfigurator
* @method static bool hasMonologConfigurator()
* @see \Illuminate\Foundation\Application::getDeferredServices
* @method static array getDeferredServices()
* @method static array
|mixed
getDeferredServices()
* @see \Illuminate\Foundation\Application::registerDeferredProvider
* @method static void registerDeferredProvider(
string $provider, string
$service = null)
* @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)
* @see \Illuminate\Container\Container::bindIf
...
...
@@ -29,33 +29,33 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::version
* @method static string version()
* @see \Illuminate\Container\Container::rebinding
* @method static mixed|void rebinding($abstract, \Closure $callback)
* @method static mixed|
null|
void rebinding($abstract, \Closure $callback)
* @see \Illuminate\Container\Container::extend
* @method static void extend($abstract, \Closure $closure)
* @see \Illuminate\Foundation\Application::useStoragePath
* @method static \Illuminate\Foundation\Application useStoragePath(
string
$path)
* @method static \Illuminate\Foundation\Application useStoragePath($path)
* @see \Illuminate\Foundation\Application::hasBeenBootstrapped
* @method static bool hasBeenBootstrapped()
* @method static bool
|mixed
hasBeenBootstrapped()
* @see \Illuminate\Container\Container::offsetUnset
* @method static void offsetUnset($key)
* @see \Illuminate\Foundation\Application::loadEnvironmentFrom
* @method static \Illuminate\Foundation\Application loadEnvironmentFrom(
string
$file)
* @method static \Illuminate\Foundation\Application loadEnvironmentFrom($file)
* @see \Illuminate\Container\Container::setInstance
* @method static void setInstance(\Illuminate\Contracts\Container\Container $container)
* @see \Illuminate\Foundation\Application::terminate
* @method static void terminate()
* @see \Illuminate\Foundation\Application::environmentFile
* @method static string environmentFile()
* @method static
mixed|
string environmentFile()
* @see \Illuminate\Foundation\Application::getCachedCompilePath
* @method static string getCachedCompilePath()
* @see \Illuminate\Foundation\Application::runningUnitTests
* @method static bool runningUnitTests()
* @see \Illuminate\Foundation\Application::setLocale
* @method static void setLocale(
string
$locale)
* @method static void setLocale($locale)
* @see \Illuminate\Foundation\Application::bootstrapPath
* @method static string bootstrapPath()
* @see \Illuminate\Foundation\Application::detectEnvironment
* @method static string detectEnvironment(\Closure $callback)
* @method static
mixed|
string detectEnvironment(\Closure $callback)
* @see \Illuminate\Foundation\Application::isLocal
* @method static bool isLocal()
* @see \Illuminate\Foundation\Application::getCachedServicesPath
...
...
@@ -65,21 +65,21 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::registerConfiguredProviders
* @method static void registerConfiguredProviders()
* @see \Illuminate\Foundation\Application::isLocale
* @method static bool isLocale(
string
$locale)
* @method static bool isLocale($locale)
* @see \Illuminate\Container\Container::share
* @method static \Closure share(\Closure $closure)
* @see \Illuminate\Foundation\Application::getNamespace
* @method static null|string getNamespace()
* @method static
int|mixed|
null|string getNamespace()
* @see \Illuminate\Container\Container::resolved
* @method static bool resolved($abstract)
* @see \Illuminate\Foundation\Application::getProvider
* @method static
\Illuminate\Support\ServiceProvider|null getProvider(\Illuminate\Support\ServiceProvider|string
$provider)
* @method static
false|mixed getProvider(
$provider)
* @see \Illuminate\Container\Container::refresh
* @method static mixed|null refresh($abstract, $target, $method)
* @method static mixed|null
|void
refresh($abstract, $target, $method)
* @see \Illuminate\Foundation\Application::registerCoreContainerAliases
* @method static void registerCoreContainerAliases()
* @see \Illuminate\Foundation\Application::useDatabasePath
* @method static \Illuminate\Foundation\Application useDatabasePath(
string
$path)
* @method static \Illuminate\Foundation\Application useDatabasePath($path)
* @see \Illuminate\Foundation\Application::environmentFilePath
* @method static string environmentFilePath()
* @see \Illuminate\Foundation\Application::booting
...
...
@@ -89,15 +89,15 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Container\Container::call
* @method static mixed call($callback, array $parameters = [], $defaultMethod = null)
* @see \Illuminate\Foundation\Application::getLocale
* @method static
string
getLocale()
* @method static
void
getLocale()
* @see \Illuminate\Foundation\Application::terminating
* @method static \Illuminate\Foundation\Application terminating(\Closure $callback)
* @see \Illuminate\Foundation\Application::beforeBootstrapping
* @method static void beforeBootstrapping(
string
$bootstrapper, \Closure $callback)
* @method static void beforeBootstrapping($bootstrapper, \Closure $callback)
* @see \Illuminate\Container\Container::wrap
* @method static \Closure wrap(\Closure $callback, array $parameters = [])
* @see \Illuminate\Foundation\Application::register
* @method static \Illuminate\Support\ServiceProvider|
string register(\Illuminate\Support\ServiceProvider|string $provider, array $options = [], bool
$force = false)
* @method static \Illuminate\Support\ServiceProvider|
mixed|string register($provider, $options = [],
$force = false)
* @see \Illuminate\Foundation\Application::environmentPath
* @method static string environmentPath()
* @see \Illuminate\Foundation\Application::addDeferredServices
...
...
@@ -113,13 +113,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::storagePath
* @method static string storagePath()
* @see \Illuminate\Foundation\Application::resolveProviderClass
* @method static
\Illuminate\Support\ServiceProvider resolveProviderClass(string
$provider)
* @method static
mixed resolveProviderClass(
$provider)
* @see \Illuminate\Foundation\Application::loadDeferredProvider
* @method static void loadDeferredProvider(
string
$service)
* @method static void loadDeferredProvider($service)
* @see \Illuminate\Foundation\Application::booted
* @method static void booted($callback)
* @see \Illuminate\Foundation\Application::routesAreCached
* @method static
bool
routesAreCached()
* @method static
void
routesAreCached()
* @see \Illuminate\Container\Container::tag
* @method static void tag($abstracts, $tags)
* @see \Illuminate\Foundation\Application::publicPath
...
...
@@ -131,17 +131,17 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::loadDeferredProviders
* @method static void loadDeferredProviders()
* @see \Illuminate\Foundation\Application::abort
* @method static void abort(
int $code, string
$message = '', array $headers = [])
* @method static void abort(
$code,
$message = '', array $headers = [])
* @see \Illuminate\Container\Container::afterResolving
* @method static void afterResolving($abstract, \Closure $callback = null)
* @see \Illuminate\Foundation\Application::afterBootstrapping
* @method static void afterBootstrapping(
string
$bootstrapper, \Closure $callback)
* @method static void afterBootstrapping($bootstrapper, \Closure $callback)
* @see \Illuminate\Foundation\Application::configurationIsCached
* @method static bool configurationIsCached()
* @see \Illuminate\Foundation\Application::runningInConsole
* @method static bool runningInConsole()
* @see \Illuminate\Container\Container::offsetGet
* @method static mixed offsetGet($key)
* @method static mixed
|null
offsetGet($key)
* @see \Illuminate\Foundation\Application::langPath
* @method static string langPath()
* @see \Illuminate\Container\Container::offsetSet
...
...
@@ -157,7 +157,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Foundation\Application::boot
* @method static void boot()
* @see \Illuminate\Foundation\Application::make
* @method static mixed
make(string
$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
...
...
@@ -171,29 +171,29 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Container\Container::resolving
* @method static void resolving($abstract, \Closure $callback = null)
* @see \Illuminate\Foundation\Application::bound
* @method static bool bound(
string
$abstract)
* @method static bool bound($abstract)
* @see \Illuminate\Foundation\Application::isBooted
* @method static bool isBooted()
* @method static bool
|mixed
isBooted()
* @see \Illuminate\Foundation\Application::getCachedRoutesPath
* @method static string getCachedRoutesPath()
* @see \Illuminate\Container\Container::getBindings
* @method static array|mixed getBindings()
* @see \Illuminate\Foundation\Application::useEnvironmentPath
* @method static \Illuminate\Foundation\Application useEnvironmentPath(
string
$path)
* @method static \Illuminate\Foundation\Application useEnvironmentPath($path)
* @see \Illuminate\Foundation\Application::setBasePath
* @method static \Illuminate\Foundation\Application setBasePath(
string
$basePath)
* @method static \Illuminate\Foundation\Application setBasePath($basePath)
* @see \Illuminate\Foundation\Application::environment
* @method static bool|string environment()
* @see \Illuminate\Foundation\Application::isDeferredService
* @method static bool isDeferredService(
string
$service)
* @method static bool isDeferredService($service)
* @see \Illuminate\Container\Container::build
* @method static mixed|object build($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
* @method static string configPath()
* @see \Illuminate\Foundation\Application::getLoadedProviders
* @method static array getLoadedProviders()
* @method static array
|mixed
getLoadedProviders()
* @see \Illuminate\Container\Container::getInstance
* @method static \Illuminate\Container\Container getInstance()
*/
...
...
@@ -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
...
...
@@ -269,51 +269,51 @@ namespace Illuminate\Support\Facades {
/**
* @see \Illuminate\View\Compilers\BladeCompiler::getCustomDirectives
* @method static array getCustomDirectives()
* @method static array
|mixed
getCustomDirectives()
* @see \Illuminate\View\Compilers\BladeCompiler::setEchoFormat
* @method static void setEchoFormat(
string
$format)
* @method static void setEchoFormat($format)
* @see \Illuminate\View\Compilers\BladeCompiler::compile
* @method static void compile(
string
$path = null)
* @method static void compile($path = null)
* @see \Illuminate\View\Compilers\Compiler::isExpired
* @method static bool isExpired($path)
* @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
|string
getContentTags()
* @method static array getContentTags()
* @see \Illuminate\View\Compilers\BladeCompiler::setEscapedContentTags
* @method static void setEscapedContentTags(
string $openTag, string
$closeTag)
* @method static void setEscapedContentTags(
$openTag,
$closeTag)
* @see \Illuminate\View\Compilers\Compiler::getCompiledPath
* @method static string getCompiledPath($path)
* @method static string getCompiledPath(
string
$path)
* @see \Illuminate\View\Compilers\BladeCompiler::setRawTags
* @method static void setRawTags(
string $openTag, string
$closeTag)
* @method static void setRawTags(
$openTag,
$closeTag)
* @see \Illuminate\View\Compilers\BladeCompiler::getRawTags
* @method static array|string[] getRawTags()
* @method static array|
mixed|
string[] getRawTags()
* @see \Illuminate\View\Compilers\BladeCompiler::compileEchoDefaults
* @method static
string compileEchoDefaults(string
$value)
* @method static
array|null|string|string[] compileEchoDefaults(
$value)
* @see \Illuminate\View\Compilers\BladeCompiler::setPath
* @method static void setPath(
string
$path)
* @method static void setPath($path)
* @see \Illuminate\View\Compilers\BladeCompiler::setContentTags
* @method static void setContentTags(
string $openTag, string $closeTag, bool
$escaped = false)
* @method static void setContentTags(
$openTag, $closeTag,
$escaped = false)
* @see \Illuminate\View\Compilers\BladeCompiler::getPath
* @method static string getPath()
* @see \Illuminate\View\Compilers\BladeCompiler::compileString
* @method static
string compileString(string
$value)
* @method static
array|null|string|string[] compileString(
$value)
* @see \Illuminate\View\Compilers\BladeCompiler::directive
* @method static void directive(
string
$name, callable $handler)
* @method static void directive($name, callable $handler)
* @see \Illuminate\View\Compilers\BladeCompiler::getEscapedContentTags
* @method static array
|string
getEscapedContentTags()
* @method static array getEscapedContentTags()
* @see \Illuminate\View\Compilers\BladeCompiler::getExtensions
* @method static array getExtensions()
* @method static array
|mixed
getExtensions()
*/
class
Blade
{}
/**
* @see \Illuminate\Contracts\Bus\Dispatcher::dispatch
* @method static
voi
d dispatch($command)
* @method static
mixe
d dispatch($command)
* @see \Illuminate\Contracts\Bus\Dispatcher::dispatchNow
* @method static
voi
d dispatchNow($command)
* @method static
mixe
d 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
{}
...
...
@@ -429,11 +429,11 @@ namespace Illuminate\Support\Facades {
/**
* @see \Illuminate\Encryption\Encrypter::encrypt
* @method static string encrypt($value)
* @method static string encrypt(
string
$value)
* @see \Illuminate\Encryption\Encrypter::decrypt
* @method static
mixed|string decrypt(
$payload)
* @method static
string decrypt(string
$payload)
* @see \Illuminate\Encryption\Encrypter::supported
* @method static bool supported(
$key,
$cipher)
* @method static bool supported(
string $key, string
$cipher)
*/
class
Crypt
{}
...
...
@@ -611,13 +611,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Events\Dispatcher::createClassListener
* @method static \Closure createClassListener($listener)
* @see \Illuminate\Events\Dispatcher::getListeners
* @method static
array
getListeners($eventName)
* @method static
void
getListeners($eventName)
*/
class
Event
{}
/**
* @see \Illuminate\Filesystem\Filesystem::extension
* @method static
string|string[]
extension($path)
* @method static
array|string
extension($path)
* @see \Illuminate\Filesystem\Filesystem::isWritable
* @method static bool isWritable($path)
* @see \Illuminate\Filesystem\Filesystem::prepend
...
...
@@ -627,7 +627,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Filesystem\Filesystem::type
* @method static false|string type($path)
* @see \Illuminate\Filesystem\Filesystem::dirname
* @method static
string|string[]
dirname($path)
* @method static
array|string
dirname($path)
* @see \Illuminate\Filesystem\Filesystem::delete
* @method static bool delete($paths)
* @see \Illuminate\Filesystem\Filesystem::put
...
...
@@ -661,7 +661,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Filesystem\Filesystem::deleteDirectory
* @method static bool deleteDirectory($directory, $preserve = false)
* @see \Illuminate\Filesystem\Filesystem::basename
* @method static
string|string[]
basename($path)
* @method static
array|string
basename($path)
* @see \Illuminate\Filesystem\Filesystem::size
* @method static false|int size($path)
* @see \Illuminate\Filesystem\Filesystem::lastModified
...
...
@@ -669,13 +669,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Filesystem\Filesystem::makeDirectory
* @method static bool makeDirectory($path, $mode = 0755, $recursive = false, $force = false)
* @see \Illuminate\Filesystem\Filesystem::name
* @method static
string|string[]
name($path)
* @method static
array|string
name($path)
* @see \Illuminate\Filesystem\Filesystem::files
* @method static array|false files($directory)
* @see \Illuminate\Filesystem\Filesystem::exists
* @method static bool exists($path)
* @see \Illuminate\Filesystem\Filesystem::mimeType
* @method static
mixed
mimeType($path)
* @method static
false|string
mimeType($path)
* @see \Illuminate\Filesystem\Filesystem::allFiles
* @method static array allFiles($directory, $hidden = false)
* @see \Illuminate\Filesystem\Filesystem::cleanDirectory
...
...
@@ -707,13 +707,13 @@ namespace Illuminate\Support\Facades {
/**
* @see \Illuminate\Hashing\BcryptHasher::setRounds
* @method static \Illuminate\Hashing\BcryptHasher setRounds($rounds)
* @method static \Illuminate\Hashing\BcryptHasher setRounds(
int
$rounds)
* @see \Illuminate\Hashing\BcryptHasher::needsRehash
* @method static bool needsRehash($hashedValue, array $options = [])
* @method static bool needsRehash(
string
$hashedValue, array $options = [])
* @see \Illuminate\Hashing\BcryptHasher::check
* @method static bool check(
$value,
$hashedValue, array $options = [])
* @method static bool check(
string $value, string
$hashedValue, array $options = [])
* @see \Illuminate\Hashing\BcryptHasher::make
* @method static
null|string make(
$value, array $options = [])
* @method static
string make(string
$value, array $options = [])
*/
class
Hash
{}
...
...
@@ -751,13 +751,13 @@ 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(string $key = null, array|null|string
$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
array|string old(string $key = null, array|null|string
$default = null)
* @see \Illuminate\Http\Request::ip
* @method static
mixed|null|
string ip()
* @method static string ip()
* @see \Symfony\Component\HttpFoundation\Request::getContent
* @method static resource|string getContent(bool $asResource = false)
* @see \Symfony\Component\HttpFoundation\Request::getBaseUrl
...
...
@@ -767,33 +767,33 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getUriForPath
* @method static string getUriForPath(string $path)
* @see \Illuminate\Http\Request::ips
* @method static array
|null[]
ips()
* @method static array ips()
* @see \Illuminate\Http\Request::getRouteResolver
* @method static \Closure getRouteResolver()
* @see \Illuminate\Http\Request::input
* @method static
mixed input($key = null,
$default = null)
* @method static
array|string input(string $key = null, array|null|string
$default = null)
* @see \Symfony\Component\HttpFoundation\Request::enableHttpMethodParameterOverride
* @method static void enableHttpMethodParameterOverride()
* @see \Illuminate\Http\Request::route
* @method static
mixed route(
$param = null)
* @method static
\Illuminate\Routing\Route|object|string route(null|string
$param = null)
* @see \Symfony\Component\HttpFoundation\Request::getPathInfo
* @method static string getPathInfo()
* @see \Illuminate\Http\Request::offsetUnset
* @method static
null offsetUnset(
$offset)
* @method static
void offsetUnset(string
$offset)
* @see \Illuminate\Http\Request::flashOnly
* @method static null
flashOnly(
$keys)
* @method static null
|void flashOnly(array|mixed
$keys)
* @see \Illuminate\Http\Request::except
* @method static array except($keys)
* @method static array except(
array|mixed
$keys)
* @see \Illuminate\Http\Request::decodedPath
* @method static string decodedPath()
* @see \Symfony\Component\HttpFoundation\Request::getRequestFormat
* @method static string getRequestFormat(string $default = 'html')
* @see \Illuminate\Http\Request::flash
* @method static void flash(
$filter = null,
$keys = [])
* @method static void flash(
string $filter = null, array
$keys = [])
* @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(string $key = null, array|null|string
$default = null)
* @see \Symfony\Component\HttpFoundation\Request::setLocale
* @method static void setLocale(string $locale)
* @see \Illuminate\Http\Request::setUserResolver
...
...
@@ -817,7 +817,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::segments
* @method static array segments()
* @see \Illuminate\Http\Request::file
* @method static
mixed file(
$key = null, $default = null)
* @method static
array|\Illuminate\Http\UploadedFile|null file(string
$key = null, $default = null)
* @see \Illuminate\Support\Traits\Macroable::hasMacro
* @method static bool hasMacro($name)
* @see \Symfony\Component\HttpFoundation\Request::getContentType
...
...
@@ -825,11 +825,11 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::get
* @method static mixed get(string $key, $default = null)
* @see \Illuminate\Http\Request::matchesType
* @method static bool matchesType(
$actual,
$type)
* @method static bool matchesType(
string $actual, string
$type)
* @see \Illuminate\Http\Request::acceptsJson
* @method static bool acceptsJson()
* @see \Illuminate\Http\Request::prefers
* @method static
mixed|void prefers(
$contentTypes)
* @method static
null|string prefers(array|string
$contentTypes)
* @see \Symfony\Component\HttpFoundation\Request::getTrustedProxies
* @method static array|string[] getTrustedProxies()
* @see \Symfony\Component\HttpFoundation\Request::getDefaultLocale
...
...
@@ -839,7 +839,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getSession
* @method static null|\Symfony\Component\HttpFoundation\Session\SessionInterface getSession()
* @see \Illuminate\Http\Request::hasHeader
* @method static bool hasHeader($key)
* @method static bool hasHeader(
string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getUserInfo
* @method static null|string getUserInfo()
* @see \Illuminate\Http\Request::url
...
...
@@ -853,13 +853,13 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getLocale
* @method static string getLocale()
* @see \Illuminate\Http\Request::exists
* @method static bool exists($key)
* @method static bool exists(
array|string
$key)
* @see \Symfony\Component\HttpFoundation\Request::initialize
* @method static void initialize(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), resource|string $content = null)
* @see \Illuminate\Http\Request::instance
* @method static \Illuminate\Http\Request instance()
* @see \Illuminate\Http\Request::hasFile
* @method static bool hasFile($key)
* @method static bool hasFile(
string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getRelativeUriForPath
* @method static string getRelativeUriForPath(string $path)
* @see \Illuminate\Http\Request::pjax
...
...
@@ -873,25 +873,25 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::secure
* @method static bool secure()
* @see \Illuminate\Http\Request::createFromBase
* @method static \Illuminate\Http\Request
|\Symfony\Component\HttpFoundation\Request
createFromBase(\Symfony\Component\HttpFoundation\Request $request)
* @method static \Illuminate\Http\Request createFromBase(\Symfony\Component\HttpFoundation\Request $request)
* @see \Symfony\Component\HttpFoundation\Request::getRealMethod
* @method static string getRealMethod()
* @see \Symfony\Component\HttpFoundation\Request::getPreferredLanguage
* @method static null|string getPreferredLanguage(array $locales = null)
* @see \Illuminate\Http\Request::bearerToken
* @method static
string|void
bearerToken()
* @method static
null|string
bearerToken()
* @see \Symfony\Component\HttpFoundation\Request::getClientIps
* @method static array|null[] getClientIps()
* @see \Illuminate\Http\Request::segment
* @method static
mixed segment($index,
$default = null)
* @method static
null|string segment(int $index, null|string
$default = null)
* @see \Illuminate\Http\Request::only
* @method static array only($keys)
* @method static array only(
array|mixed
$keys)
* @see \Symfony\Component\HttpFoundation\Request::setFactory
* @method static void setFactory(callable|null $callable)
* @see \Symfony\Component\HttpFoundation\Request::create
* @method static \Symfony\Component\HttpFoundation\Request create(string $uri, string $method = 'GET', array $parameters = array(), array $cookies = array(), array $files = array(), array $server = array(), string $content = null)
* @see \Illuminate\Http\Request::has
* @method static bool has($key)
* @method static bool has(
array|string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getHttpHost
* @method static string getHttpHost()
* @see \Symfony\Component\HttpFoundation\Request::setFormat
...
...
@@ -903,43 +903,43 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::setSession
* @method static void setSession(\Symfony\Component\HttpFoundation\Session\SessionInterface $session)
* @see \Illuminate\Http\Request::accepts
* @method static bool accepts($contentTypes)
* @method static bool accepts(
array|string
$contentTypes)
* @see \Illuminate\Http\Request::query
* @method static
void query($key = null,
$default = null)
* @method static
array|string query(string $key = null, array|null|string
$default = null)
* @see \Illuminate\Http\Request::format
* @method static
int|mixed|string format(
$default = 'html')
* @method static
string format(string
$default = 'html')
* @see \Illuminate\Http\Request::capture
* @method static \Illuminate\Http\Request
|\Symfony\Component\HttpFoundation\Request
capture()
* @method static \Illuminate\Http\Request capture()
* @see \Illuminate\Http\Request::duplicate
* @method static \Illuminate\Http\Request|\Symfony\Component\HttpFoundation\Request duplicate(array $query = null, array $request = null, array $attributes = null, array $cookies = null, array $files = null, array $server = null)
* @see \Symfony\Component\HttpFoundation\Request::getClientIp
* @method static null|string getClientIp()
* @see \Illuminate\Http\Request::hasCookie
* @method static bool hasCookie($key)
* @method static bool hasCookie(
string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getUser
* @method static null|string getUser()
* @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(string $key = null, array|null|string
$default = null)
* @see \Symfony\Component\HttpFoundation\Request::getBasePath
* @method static string getBasePath()
* @see \Illuminate\Http\Request::offsetGet
* @method static mixed offsetGet($offset)
* @method static mixed offsetGet(
string
$offset)
* @see \Symfony\Component\HttpFoundation\Request::getTrustedHeaderName
* @method static string getTrustedHeaderName(string $key)
* @see \Illuminate\Http\Request::session
* @method static
null|\Symfony\Component\HttpFoundation\Session\SessionInterfac
e session()
* @method static
\Illuminate\Session\Stor
e session()
* @see \Symfony\Component\HttpFoundation\Request::isNoCache
* @method static bool isNoCache()
* @see \Illuminate\Http\Request::offsetSet
* @method static
null offsetSet(
$offset, $value)
* @method static
void offsetSet(string
$offset, $value)
* @see \Symfony\Component\HttpFoundation\Request::getMethod
* @method static string getMethod()
* @see \Symfony\Component\HttpFoundation\Request::getMimeType
* @method static null|string getMimeType(string $format)
* @see \Illuminate\Http\Request::flashExcept
* @method static null
flashExcept(
$keys)
* @method static null
|void flashExcept(array|mixed
$keys)
* @see \Illuminate\Http\Request::flush
* @method static void flush()
* @see \Symfony\Component\HttpFoundation\Request::normalizeQueryString
...
...
@@ -947,9 +947,9 @@ 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(string
$key = null, $default = null)
* @see \Illuminate\Http\Request::offsetExists
* @method static bool offsetExists($offset)
* @method static bool offsetExists(
string
$offset)
* @see \Symfony\Component\HttpFoundation\Request::getUri
* @method static string getUri()
* @see \Symfony\Component\HttpFoundation\Request::getFormat
...
...
@@ -963,7 +963,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::fullUrlWithQuery
* @method static string fullUrlWithQuery(array $query)
* @see \Illuminate\Http\Request::intersect
* @method static array intersect($keys)
* @method static array intersect(
array|mixed
$keys)
* @see \Symfony\Component\HttpFoundation\Request::getScheme
* @method static string getScheme()
* @see \Illuminate\Http\Request::fullUrlIs
...
...
@@ -975,9 +975,9 @@ 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 allFiles()
* @see \Illuminate\Http\Request::user
* @method static mixed user($guard = null)
* @method static mixed user(
null|string
$guard = null)
* @see \Symfony\Component\HttpFoundation\Request::getLanguages
* @method static array getLanguages()
*/
...
...
@@ -1003,7 +1003,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Translation\Translator::has
* @method static bool has(string $key, null|string $locale = null, bool $fallback = true)
* @see \Illuminate\Support\NamespacedItemResolver::setParsedKey
* @method static void setParsedKey(
string $key, array
$parsed)
* @method static void setParsedKey(
$key,
$parsed)
* @see \Illuminate\Translation\Translator::addNamespace
* @method static void addNamespace(string $namespace, string $hint)
* @see \Illuminate\Translation\Translator::getFallback
...
...
@@ -1241,13 +1241,13 @@ 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(string $key = null, array|null|string
$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
array|string old(string $key = null, array|null|string
$default = null)
* @see \Illuminate\Http\Request::ip
* @method static
mixed|null|
string ip()
* @method static string ip()
* @see \Symfony\Component\HttpFoundation\Request::getContent
* @method static resource|string getContent(bool $asResource = false)
* @see \Symfony\Component\HttpFoundation\Request::getBaseUrl
...
...
@@ -1257,33 +1257,33 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getUriForPath
* @method static string getUriForPath(string $path)
* @see \Illuminate\Http\Request::ips
* @method static array
|null[]
ips()
* @method static array ips()
* @see \Illuminate\Http\Request::getRouteResolver
* @method static \Closure getRouteResolver()
* @see \Illuminate\Http\Request::input
* @method static
mixed input($key = null,
$default = null)
* @method static
array|string input(string $key = null, array|null|string
$default = null)
* @see \Symfony\Component\HttpFoundation\Request::enableHttpMethodParameterOverride
* @method static void enableHttpMethodParameterOverride()
* @see \Illuminate\Http\Request::route
* @method static
mixed route(
$param = null)
* @method static
\Illuminate\Routing\Route|object|string route(null|string
$param = null)
* @see \Symfony\Component\HttpFoundation\Request::getPathInfo
* @method static string getPathInfo()
* @see \Illuminate\Http\Request::offsetUnset
* @method static
null offsetUnset(
$offset)
* @method static
void offsetUnset(string
$offset)
* @see \Illuminate\Http\Request::flashOnly
* @method static null
flashOnly(
$keys)
* @method static null
|void flashOnly(array|mixed
$keys)
* @see \Illuminate\Http\Request::except
* @method static array except($keys)
* @method static array except(
array|mixed
$keys)
* @see \Illuminate\Http\Request::decodedPath
* @method static string decodedPath()
* @see \Symfony\Component\HttpFoundation\Request::getRequestFormat
* @method static string getRequestFormat(string $default = 'html')
* @see \Illuminate\Http\Request::flash
* @method static void flash(
$filter = null,
$keys = [])
* @method static void flash(
string $filter = null, array
$keys = [])
* @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(string $key = null, array|null|string
$default = null)
* @see \Symfony\Component\HttpFoundation\Request::setLocale
* @method static void setLocale(string $locale)
* @see \Illuminate\Http\Request::setUserResolver
...
...
@@ -1307,7 +1307,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::segments
* @method static array segments()
* @see \Illuminate\Http\Request::file
* @method static
mixed file(
$key = null, $default = null)
* @method static
array|\Illuminate\Http\UploadedFile|null file(string
$key = null, $default = null)
* @see \Illuminate\Support\Traits\Macroable::hasMacro
* @method static bool hasMacro($name)
* @see \Symfony\Component\HttpFoundation\Request::getContentType
...
...
@@ -1315,11 +1315,11 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::get
* @method static mixed get(string $key, $default = null)
* @see \Illuminate\Http\Request::matchesType
* @method static bool matchesType(
$actual,
$type)
* @method static bool matchesType(
string $actual, string
$type)
* @see \Illuminate\Http\Request::acceptsJson
* @method static bool acceptsJson()
* @see \Illuminate\Http\Request::prefers
* @method static
mixed|void prefers(
$contentTypes)
* @method static
null|string prefers(array|string
$contentTypes)
* @see \Symfony\Component\HttpFoundation\Request::getTrustedProxies
* @method static array|string[] getTrustedProxies()
* @see \Symfony\Component\HttpFoundation\Request::getDefaultLocale
...
...
@@ -1329,7 +1329,7 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getSession
* @method static null|\Symfony\Component\HttpFoundation\Session\SessionInterface getSession()
* @see \Illuminate\Http\Request::hasHeader
* @method static bool hasHeader($key)
* @method static bool hasHeader(
string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getUserInfo
* @method static null|string getUserInfo()
* @see \Illuminate\Http\Request::url
...
...
@@ -1343,13 +1343,13 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::getLocale
* @method static string getLocale()
* @see \Illuminate\Http\Request::exists
* @method static bool exists($key)
* @method static bool exists(
array|string
$key)
* @see \Symfony\Component\HttpFoundation\Request::initialize
* @method static void initialize(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), resource|string $content = null)
* @see \Illuminate\Http\Request::instance
* @method static \Illuminate\Http\Request instance()
* @see \Illuminate\Http\Request::hasFile
* @method static bool hasFile($key)
* @method static bool hasFile(
string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getRelativeUriForPath
* @method static string getRelativeUriForPath(string $path)
* @see \Illuminate\Http\Request::pjax
...
...
@@ -1363,25 +1363,25 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::secure
* @method static bool secure()
* @see \Illuminate\Http\Request::createFromBase
* @method static \Illuminate\Http\Request
|\Symfony\Component\HttpFoundation\Request
createFromBase(\Symfony\Component\HttpFoundation\Request $request)
* @method static \Illuminate\Http\Request createFromBase(\Symfony\Component\HttpFoundation\Request $request)
* @see \Symfony\Component\HttpFoundation\Request::getRealMethod
* @method static string getRealMethod()
* @see \Symfony\Component\HttpFoundation\Request::getPreferredLanguage
* @method static null|string getPreferredLanguage(array $locales = null)
* @see \Illuminate\Http\Request::bearerToken
* @method static
string|void
bearerToken()
* @method static
null|string
bearerToken()
* @see \Symfony\Component\HttpFoundation\Request::getClientIps
* @method static array|null[] getClientIps()
* @see \Illuminate\Http\Request::segment
* @method static
mixed segment($index,
$default = null)
* @method static
null|string segment(int $index, null|string
$default = null)
* @see \Illuminate\Http\Request::only
* @method static array only($keys)
* @method static array only(
array|mixed
$keys)
* @see \Symfony\Component\HttpFoundation\Request::setFactory
* @method static void setFactory(callable|null $callable)
* @see \Symfony\Component\HttpFoundation\Request::create
* @method static \Symfony\Component\HttpFoundation\Request create(string $uri, string $method = 'GET', array $parameters = array(), array $cookies = array(), array $files = array(), array $server = array(), string $content = null)
* @see \Illuminate\Http\Request::has
* @method static bool has($key)
* @method static bool has(
array|string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getHttpHost
* @method static string getHttpHost()
* @see \Symfony\Component\HttpFoundation\Request::setFormat
...
...
@@ -1393,43 +1393,43 @@ namespace Illuminate\Support\Facades {
* @see \Symfony\Component\HttpFoundation\Request::setSession
* @method static void setSession(\Symfony\Component\HttpFoundation\Session\SessionInterface $session)
* @see \Illuminate\Http\Request::accepts
* @method static bool accepts($contentTypes)
* @method static bool accepts(
array|string
$contentTypes)
* @see \Illuminate\Http\Request::query
* @method static
void query($key = null,
$default = null)
* @method static
array|string query(string $key = null, array|null|string
$default = null)
* @see \Illuminate\Http\Request::format
* @method static
int|mixed|string format(
$default = 'html')
* @method static
string format(string
$default = 'html')
* @see \Illuminate\Http\Request::capture
* @method static \Illuminate\Http\Request
|\Symfony\Component\HttpFoundation\Request
capture()
* @method static \Illuminate\Http\Request capture()
* @see \Illuminate\Http\Request::duplicate
* @method static \Illuminate\Http\Request|\Symfony\Component\HttpFoundation\Request duplicate(array $query = null, array $request = null, array $attributes = null, array $cookies = null, array $files = null, array $server = null)
* @see \Symfony\Component\HttpFoundation\Request::getClientIp
* @method static null|string getClientIp()
* @see \Illuminate\Http\Request::hasCookie
* @method static bool hasCookie($key)
* @method static bool hasCookie(
string
$key)
* @see \Symfony\Component\HttpFoundation\Request::getUser
* @method static null|string getUser()
* @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(string $key = null, array|null|string
$default = null)
* @see \Symfony\Component\HttpFoundation\Request::getBasePath
* @method static string getBasePath()
* @see \Illuminate\Http\Request::offsetGet
* @method static mixed offsetGet($offset)
* @method static mixed offsetGet(
string
$offset)
* @see \Symfony\Component\HttpFoundation\Request::getTrustedHeaderName
* @method static string getTrustedHeaderName(string $key)
* @see \Illuminate\Http\Request::session
* @method static
null|\Symfony\Component\HttpFoundation\Session\SessionInterfac
e session()
* @method static
\Illuminate\Session\Stor
e session()
* @see \Symfony\Component\HttpFoundation\Request::isNoCache
* @method static bool isNoCache()
* @see \Illuminate\Http\Request::offsetSet
* @method static
null offsetSet(
$offset, $value)
* @method static
void offsetSet(string
$offset, $value)
* @see \Symfony\Component\HttpFoundation\Request::getMethod
* @method static string getMethod()
* @see \Symfony\Component\HttpFoundation\Request::getMimeType
* @method static null|string getMimeType(string $format)
* @see \Illuminate\Http\Request::flashExcept
* @method static null
flashExcept(
$keys)
* @method static null
|void flashExcept(array|mixed
$keys)
* @see \Illuminate\Http\Request::flush
* @method static void flush()
* @see \Symfony\Component\HttpFoundation\Request::normalizeQueryString
...
...
@@ -1437,9 +1437,9 @@ 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(string
$key = null, $default = null)
* @see \Illuminate\Http\Request::offsetExists
* @method static bool offsetExists($offset)
* @method static bool offsetExists(
string
$offset)
* @see \Symfony\Component\HttpFoundation\Request::getUri
* @method static string getUri()
* @see \Symfony\Component\HttpFoundation\Request::getFormat
...
...
@@ -1453,7 +1453,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Http\Request::fullUrlWithQuery
* @method static string fullUrlWithQuery(array $query)
* @see \Illuminate\Http\Request::intersect
* @method static array intersect($keys)
* @method static array intersect(
array|mixed
$keys)
* @see \Symfony\Component\HttpFoundation\Request::getScheme
* @method static string getScheme()
* @see \Illuminate\Http\Request::fullUrlIs
...
...
@@ -1465,9 +1465,9 @@ 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 allFiles()
* @see \Illuminate\Http\Request::user
* @method static mixed user($guard = null)
* @method static mixed user(
null|string
$guard = null)
* @see \Symfony\Component\HttpFoundation\Request::getLanguages
* @method static array getLanguages()
*/
...
...
@@ -1501,23 +1501,23 @@ namespace Illuminate\Support\Facades {
/**
* @see \Illuminate\Routing\Router::currentRouteName
* @method static array|callable|\Closure|null|string currentRouteName()
* @method static array|callable|\Closure|
mixed|
null|string currentRouteName()
* @see \Illuminate\Routing\Router::dispatch
* @method static \Symfony\Component\HttpFoundation\Response dispatch(\Illuminate\Http\Request $request)
* @method static \
Illuminate\Http\Response|\
Symfony\Component\HttpFoundation\Response dispatch(\Illuminate\Http\Request $request)
* @see \Illuminate\Routing\Router::auth
* @method static void auth()
* @see \Illuminate\Routing\Router::getLastGroupPrefix
* @method static mixed|string getLastGroupPrefix()
* @see \Illuminate\Routing\Router::put
* @method static \Illuminate\Routing\Route put($uri, $action = null)
* @method static \Illuminate\Routing\Route
|void
put($uri, $action = null)
* @see \Illuminate\Routing\Router::patch
* @method static \Illuminate\Routing\Route patch($uri, $action = null)
* @method static \Illuminate\Routing\Route
|void
patch($uri, $action = null)
* @see \Illuminate\Routing\Router::bind
* @method static void bind($key, $binder)
* @see \Illuminate\Routing\Router::post
* @method static \Illuminate\Routing\Route post($uri, $action = null)
* @method static \Illuminate\Routing\Route
|void
post($uri, $action = null)
* @see \Illuminate\Routing\Router::options
* @method static \Illuminate\Routing\Route options($uri, $action = null)
* @method static \Illuminate\Routing\Route
|void
options($uri, $action = null)
* @see \Illuminate\Routing\Router::controllers
* @method static void controllers(array $controllers)
* @see \Illuminate\Routing\Router::model
...
...
@@ -1541,7 +1541,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Routing\Router::is
* @method static bool is()
* @see \Illuminate\Routing\Router::dispatchToRoute
* @method static \Symfony\Component\HttpFoundation\Response dispatchToRoute(\Illuminate\Http\Request $request)
* @method static \
Illuminate\Http\Response|\
Symfony\Component\HttpFoundation\Response dispatchToRoute(\Illuminate\Http\Request $request)
* @see \Illuminate\Routing\Router::getRoutes
* @method static \Illuminate\Routing\RouteCollection getRoutes()
* @see \Illuminate\Routing\Router::input
...
...
@@ -1557,7 +1557,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Routing\Router::pattern
* @method static void pattern($key, $pattern)
* @see \Illuminate\Routing\Router::delete
* @method static \Illuminate\Routing\Route delete($uri, $action = null)
* @method static \Illuminate\Routing\Route
|void
delete($uri, $action = null)
* @see \Illuminate\Routing\Router::current
* @method static \Illuminate\Routing\Route current()
* @see \Illuminate\Routing\Router::hasGroupStack
...
...
@@ -1567,7 +1567,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Routing\Router::getMiddleware
* @method static array|mixed getMiddleware()
* @see \Illuminate\Routing\Router::get
* @method static \Illuminate\Routing\Route get($uri, $action = null)
* @method static \Illuminate\Routing\Route
|void
get($uri, $action = null)
* @see \Illuminate\Routing\Router::resourceParameters
* @method static void resourceParameters(array $parameters = [])
* @see \Illuminate\Routing\Router::resolveMiddlewareClassName
...
...
@@ -1577,7 +1577,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Routing\Router::mergeWithLastGroup
* @method static array mergeWithLastGroup($new)
* @see \Illuminate\Routing\Router::gatherRouteMiddlewares
* @method static array gatherRouteMiddlewares(\Illuminate\Routing\Route $route)
* @method static array
|mixed
gatherRouteMiddlewares(\Illuminate\Routing\Route $route)
* @see \Illuminate\Support\Traits\Macroable::macro
* @method static void macro($name, callable $macro)
* @see \Illuminate\Routing\Router::controller
...
...
@@ -1587,7 +1587,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Routing\Router::currentRouteNamed
* @method static bool currentRouteNamed($name)
* @see \Illuminate\Routing\Router::match
* @method static \Illuminate\Routing\Route match($methods, $uri, $action = null)
* @method static \Illuminate\Routing\Route
|void
match($methods, $uri, $action = null)
* @see \Illuminate\Routing\Router::resources
* @method static void resources(array $resources)
* @see \Illuminate\Routing\Router::createClassBinding
...
...
@@ -1649,13 +1649,13 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Session\SessionManager::getSessionConfig
* @method static array 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,63 +1667,63 @@ 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()
* @method static array 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()
* @method static bool 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
...
...
@@ -1735,19 +1735,19 @@ namespace Illuminate\Support\Facades {
* @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
mixed|
string 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 getBag($name)
* @method static
array|\ArrayAccess|
mixed getBag($name)
*/
class
Session
{}
...
...
@@ -1791,7 +1791,7 @@ namespace Illuminate\Support\Facades {
* @see \Illuminate\Support\Traits\Macroable::macro
* @method static void macro($name, callable $macro)
* @see \Illuminate\Routing\UrlGenerator::previous
* @method static string previous($fallback = false)
* @method static
array|\ArrayAccess|mixed|
string previous($fallback = false)
* @see \Illuminate\Routing\UrlGenerator::setSessionResolver
* @method static \Illuminate\Routing\UrlGenerator setSessionResolver(callable $sessionResolver)
* @see \Illuminate\Routing\UrlGenerator::setRoutes
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment