Skip to content

Commit 7d720fb

Browse files
Laravel 10.13.5 Shift (alexjustesen#624)
Co-authored-by: Shift <[email protected]>
1 parent 03bfb6f commit 7d720fb

File tree

2 files changed

+129
-68
lines changed

2 files changed

+129
-68
lines changed

_ide_helper.php

Lines changed: 79 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* A helper file for Laravel, to provide autocomplete information to your IDE
7-
* Generated for Laravel 10.10.1.
7+
* Generated for Laravel 10.13.5.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -3333,13 +3333,13 @@ public static function map($map)
33333333
* Specify the jobs that should be dispatched instead of faked.
33343334
*
33353335
* @param array|string $jobsToDispatch
3336-
* @return void
3336+
* @return \Illuminate\Support\Testing\Fakes\BusFake
33373337
* @static
33383338
*/
33393339
public static function except($jobsToDispatch)
33403340
{
33413341
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
3342-
$instance->except($jobsToDispatch);
3342+
return $instance->except($jobsToDispatch);
33433343
}
33443344
/**
33453345
* Assert if a job was dispatched based on a truth-test callback.
@@ -5307,7 +5307,7 @@ public static function useDefaultPostProcessor()
53075307
/**
53085308
* Begin a fluent query against a database table.
53095309
*
5310-
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Illuminate\Contracts\Database\Query\Expression|string $table
5310+
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string $table
53115311
* @param string|null $as
53125312
* @return \Illuminate\Database\Query\Builder
53135313
* @static
@@ -5632,6 +5632,19 @@ public static function raw($value)
56325632
{ //Method inherited from \Illuminate\Database\Connection
56335633
/** @var \Illuminate\Database\MySqlConnection $instance */
56345634
return $instance->raw($value);
5635+
}
5636+
/**
5637+
* Escape a value for safe SQL embedding.
5638+
*
5639+
* @param string|float|int|bool|null $value
5640+
* @param bool $binary
5641+
* @return string
5642+
* @static
5643+
*/
5644+
public static function escape($value, $binary = false)
5645+
{ //Method inherited from \Illuminate\Database\Connection
5646+
/** @var \Illuminate\Database\MySqlConnection $instance */
5647+
return $instance->escape($value, $binary);
56355648
}
56365649
/**
56375650
* Determine if the database connection has modified any database records.
@@ -7666,6 +7679,18 @@ public static function needsRehash($hashedValue, $options = [])
76667679
{
76677680
/** @var \Illuminate\Hashing\HashManager $instance */
76687681
return $instance->needsRehash($hashedValue, $options);
7682+
}
7683+
/**
7684+
* Determine if a given string is already hashed.
7685+
*
7686+
* @param string $value
7687+
* @return bool
7688+
* @static
7689+
*/
7690+
public static function isHashed($value)
7691+
{
7692+
/** @var \Illuminate\Hashing\HashManager $instance */
7693+
return $instance->isHashed($value);
76697694
}
76707695
/**
76717696
* Get the default driver name.
@@ -7765,6 +7790,7 @@ public static function forgetDrivers()
77657790
* @method static \Illuminate\Http\Client\PendingRequest acceptJson()
77667791
* @method static \Illuminate\Http\Client\PendingRequest accept(string $contentType)
77677792
* @method static \Illuminate\Http\Client\PendingRequest withHeaders(array $headers)
7793+
* @method static \Illuminate\Http\Client\PendingRequest replaceHeaders(array $headers)
77687794
* @method static \Illuminate\Http\Client\PendingRequest withBasicAuth(string $username, string $password)
77697795
* @method static \Illuminate\Http\Client\PendingRequest withDigestAuth(string $username, string $password)
77707796
* @method static \Illuminate\Http\Client\PendingRequest withToken(string $token, string $type = 'Bearer')
@@ -11463,12 +11489,13 @@ public static function offsetUnset($offset)
1146311489
* @param array $files The FILES parameters
1146411490
* @param array $server The SERVER parameters
1146511491
* @param string|resource|null $content The raw body data
11492+
* @return void
1146611493
* @static
1146711494
*/
1146811495
public static function initialize($query = [], $request = [], $attributes = [], $cookies = [], $files = [], $server = [], $content = null)
1146911496
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1147011497
/** @var \Illuminate\Http\Request $instance */
11471-
return $instance->initialize($query, $request, $attributes, $cookies, $files, $server, $content);
11498+
$instance->initialize($query, $request, $attributes, $cookies, $files, $server, $content);
1147211499
}
1147311500
/**
1147411501
* Creates a new request with values from PHP's super globals.
@@ -11505,24 +11532,26 @@ public static function create($uri, $method = 'GET', $parameters = [], $cookies
1150511532
* to keep BC with an existing system. It should not be used for any
1150611533
* other purpose.
1150711534
*
11535+
* @return void
1150811536
* @static
1150911537
*/
1151011538
public static function setFactory($callable)
1151111539
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
11512-
return \Illuminate\Http\Request::setFactory($callable);
11540+
\Illuminate\Http\Request::setFactory($callable);
1151311541
}
1151411542
/**
1151511543
* Overrides the PHP global variables according to this request instance.
1151611544
*
1151711545
* It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE.
1151811546
* $_FILES is never overridden, see rfc1867
1151911547
*
11548+
* @return void
1152011549
* @static
1152111550
*/
1152211551
public static function overrideGlobals()
1152311552
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1152411553
/** @var \Illuminate\Http\Request $instance */
11525-
return $instance->overrideGlobals();
11554+
$instance->overrideGlobals();
1152611555
}
1152711556
/**
1152811557
* Sets a list of trusted proxies.
@@ -11531,11 +11560,12 @@ public static function overrideGlobals()
1153111560
*
1153211561
* @param array $proxies A list of trusted proxies, the string 'REMOTE_ADDR' will be replaced with $_SERVER['REMOTE_ADDR']
1153311562
* @param int $trustedHeaderSet A bit field of Request::HEADER_*, to set which headers to trust from your proxies
11563+
* @return void
1153411564
* @static
1153511565
*/
1153611566
public static function setTrustedProxies($proxies, $trustedHeaderSet)
1153711567
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
11538-
return \Illuminate\Http\Request::setTrustedProxies($proxies, $trustedHeaderSet);
11568+
\Illuminate\Http\Request::setTrustedProxies($proxies, $trustedHeaderSet);
1153911569
}
1154011570
/**
1154111571
* Gets the list of trusted proxies.
@@ -11563,11 +11593,12 @@ public static function getTrustedHeaderSet()
1156311593
* You should only list the hosts you manage using regexs.
1156411594
*
1156511595
* @param array $hostPatterns A list of trusted host patterns
11596+
* @return void
1156611597
* @static
1156711598
*/
1156811599
public static function setTrustedHosts($hostPatterns)
1156911600
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
11570-
return \Illuminate\Http\Request::setTrustedHosts($hostPatterns);
11601+
\Illuminate\Http\Request::setTrustedHosts($hostPatterns);
1157111602
}
1157211603
/**
1157311604
* Gets the list of trusted host patterns.
@@ -11602,11 +11633,12 @@ public static function normalizeQueryString($qs)
1160211633
*
1160311634
* The HTTP method can only be overridden when the real HTTP method is POST.
1160411635
*
11636+
* @return void
1160511637
* @static
1160611638
*/
1160711639
public static function enableHttpMethodParameterOverride()
1160811640
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
11609-
return \Illuminate\Http\Request::enableHttpMethodParameterOverride();
11641+
\Illuminate\Http\Request::enableHttpMethodParameterOverride();
1161011642
}
1161111643
/**
1161211644
* Checks whether support for the _method request parameter is enabled.
@@ -11631,12 +11663,13 @@ public static function hasPreviousSession()
1163111663
/**
1163211664
*
1163311665
*
11666+
* @return void
1163411667
* @static
1163511668
*/
1163611669
public static function setSession($session)
1163711670
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1163811671
/** @var \Illuminate\Http\Request $instance */
11639-
return $instance->setSession($session);
11672+
$instance->setSession($session);
1164011673
}
1164111674
/**
1164211675
*
@@ -11937,12 +11970,13 @@ public static function getHost()
1193711970
/**
1193811971
* Sets the request method.
1193911972
*
11973+
* @return void
1194011974
* @static
1194111975
*/
1194211976
public static function setMethod($method)
1194311977
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1194411978
/** @var \Illuminate\Http\Request $instance */
11945-
return $instance->setMethod($method);
11979+
$instance->setMethod($method);
1194611980
}
1194711981
/**
1194811982
* Gets the request "intended" method.
@@ -12008,12 +12042,13 @@ public static function getFormat($mimeType)
1200812042
* Associates a format with mime types.
1200912043
*
1201012044
* @param string|string[] $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type)
12045+
* @return void
1201112046
* @static
1201212047
*/
1201312048
public static function setFormat($format, $mimeTypes)
1201412049
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1201512050
/** @var \Illuminate\Http\Request $instance */
12016-
return $instance->setFormat($format, $mimeTypes);
12051+
$instance->setFormat($format, $mimeTypes);
1201712052
}
1201812053
/**
1201912054
* Gets the request format.
@@ -12035,12 +12070,13 @@ public static function getRequestFormat($default = 'html')
1203512070
/**
1203612071
* Sets the request format.
1203712072
*
12073+
* @return void
1203812074
* @static
1203912075
*/
1204012076
public static function setRequestFormat($format)
1204112077
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1204212078
/** @var \Illuminate\Http\Request $instance */
12043-
return $instance->setRequestFormat($format);
12079+
$instance->setRequestFormat($format);
1204412080
}
1204512081
/**
1204612082
* Gets the usual name of the format associated with the request's media type (provided in the Content-Type header).
@@ -12067,12 +12103,13 @@ public static function getContentTypeFormat()
1206712103
/**
1206812104
* Sets the default locale.
1206912105
*
12106+
* @return void
1207012107
* @static
1207112108
*/
1207212109
public static function setDefaultLocale($locale)
1207312110
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1207412111
/** @var \Illuminate\Http\Request $instance */
12075-
return $instance->setDefaultLocale($locale);
12112+
$instance->setDefaultLocale($locale);
1207612113
}
1207712114
/**
1207812115
* Get the default locale.
@@ -12087,12 +12124,13 @@ public static function getDefaultLocale()
1208712124
/**
1208812125
* Sets the locale.
1208912126
*
12127+
* @return void
1209012128
* @static
1209112129
*/
1209212130
public static function setLocale($locale)
1209312131
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1209412132
/** @var \Illuminate\Http\Request $instance */
12095-
return $instance->setLocale($locale);
12133+
$instance->setLocale($locale);
1209612134
}
1209712135
/**
1209812136
* Get the locale.
@@ -12175,6 +12213,16 @@ public static function getContent($asResource = false)
1217512213
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
1217612214
/** @var \Illuminate\Http\Request $instance */
1217712215
return $instance->getContent($asResource);
12216+
}
12217+
/**
12218+
* Gets the decoded form or json request body.
12219+
*
12220+
* @static
12221+
*/
12222+
public static function getPayload()
12223+
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
12224+
/** @var \Illuminate\Http\Request $instance */
12225+
return $instance->getPayload();
1217812226
}
1217912227
/**
1218012228
* Gets the Etags.
@@ -21548,6 +21596,19 @@ public static function forceCreate($attributes)
2154821596
return $instance->forceCreate($attributes);
2154921597
}
2155021598

21599+
/**
21600+
* Save a new model instance with mass assignment without raising model events.
21601+
*
21602+
* @param array $attributes
21603+
* @return \Illuminate\Database\Eloquent\Model|$this
21604+
* @static
21605+
*/
21606+
public static function forceCreateQuietly($attributes = [])
21607+
{
21608+
/** @var \Illuminate\Database\Eloquent\Builder $instance */
21609+
return $instance->forceCreateQuietly($attributes);
21610+
}
21611+
2155121612
/**
2155221613
* Insert new records or update the existing ones.
2155321614
*
@@ -23782,7 +23843,7 @@ public static function groupByRaw($sql, $bindings = [])
2378223843
/**
2378323844
* Add a "having" clause to the query.
2378423845
*
23785-
* @param \Closure|string $column
23846+
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
2378623847
* @param string|int|float|null $operator
2378723848
* @param string|int|float|null $value
2378823849
* @param string $boolean
@@ -23798,7 +23859,7 @@ public static function having($column, $operator = null, $value = null, $boolean
2379823859
/**
2379923860
* Add an "or having" clause to the query.
2380023861
*
23801-
* @param \Closure|string $column
23862+
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
2380223863
* @param string|int|float|null $operator
2380323864
* @param string|int|float|null $value
2380423865
* @return \Illuminate\Database\Query\Builder

0 commit comments

Comments
 (0)