Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 79 additions & 18 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.10.1.
* Generated for Laravel 10.13.5.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -3333,13 +3333,13 @@ public static function map($map)
* Specify the jobs that should be dispatched instead of faked.
*
* @param array|string $jobsToDispatch
* @return void
* @return \Illuminate\Support\Testing\Fakes\BusFake
* @static
*/
public static function except($jobsToDispatch)
{
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
$instance->except($jobsToDispatch);
return $instance->except($jobsToDispatch);
}
/**
* Assert if a job was dispatched based on a truth-test callback.
Expand Down Expand Up @@ -5307,7 +5307,7 @@ public static function useDefaultPostProcessor()
/**
* Begin a fluent query against a database table.
*
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Illuminate\Contracts\Database\Query\Expression|string $table
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Contracts\Database\Query\Expression|string $table
* @param string|null $as
* @return \Illuminate\Database\Query\Builder
* @static
Expand Down Expand Up @@ -5632,6 +5632,19 @@ public static function raw($value)
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\MySqlConnection $instance */
return $instance->raw($value);
}
/**
* Escape a value for safe SQL embedding.
*
* @param string|float|int|bool|null $value
* @param bool $binary
* @return string
* @static
*/
public static function escape($value, $binary = false)
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\MySqlConnection $instance */
return $instance->escape($value, $binary);
}
/**
* Determine if the database connection has modified any database records.
Expand Down Expand Up @@ -7666,6 +7679,18 @@ public static function needsRehash($hashedValue, $options = [])
{
/** @var \Illuminate\Hashing\HashManager $instance */
return $instance->needsRehash($hashedValue, $options);
}
/**
* Determine if a given string is already hashed.
*
* @param string $value
* @return bool
* @static
*/
public static function isHashed($value)
{
/** @var \Illuminate\Hashing\HashManager $instance */
return $instance->isHashed($value);
}
/**
* Get the default driver name.
Expand Down Expand Up @@ -7765,6 +7790,7 @@ public static function forgetDrivers()
* @method static \Illuminate\Http\Client\PendingRequest acceptJson()
* @method static \Illuminate\Http\Client\PendingRequest accept(string $contentType)
* @method static \Illuminate\Http\Client\PendingRequest withHeaders(array $headers)
* @method static \Illuminate\Http\Client\PendingRequest replaceHeaders(array $headers)
* @method static \Illuminate\Http\Client\PendingRequest withBasicAuth(string $username, string $password)
* @method static \Illuminate\Http\Client\PendingRequest withDigestAuth(string $username, string $password)
* @method static \Illuminate\Http\Client\PendingRequest withToken(string $token, string $type = 'Bearer')
Expand Down Expand Up @@ -11463,12 +11489,13 @@ public static function offsetUnset($offset)
* @param array $files The FILES parameters
* @param array $server The SERVER parameters
* @param string|resource|null $content The raw body data
* @return void
* @static
*/
public static function initialize($query = [], $request = [], $attributes = [], $cookies = [], $files = [], $server = [], $content = null)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->initialize($query, $request, $attributes, $cookies, $files, $server, $content);
$instance->initialize($query, $request, $attributes, $cookies, $files, $server, $content);
}
/**
* Creates a new request with values from PHP's super globals.
Expand Down Expand Up @@ -11505,24 +11532,26 @@ public static function create($uri, $method = 'GET', $parameters = [], $cookies
* to keep BC with an existing system. It should not be used for any
* other purpose.
*
* @return void
* @static
*/
public static function setFactory($callable)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
return \Illuminate\Http\Request::setFactory($callable);
\Illuminate\Http\Request::setFactory($callable);
}
/**
* Overrides the PHP global variables according to this request instance.
*
* It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE.
* $_FILES is never overridden, see rfc1867
*
* @return void
* @static
*/
public static function overrideGlobals()
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->overrideGlobals();
$instance->overrideGlobals();
}
/**
* Sets a list of trusted proxies.
Expand All @@ -11531,11 +11560,12 @@ public static function overrideGlobals()
*
* @param array $proxies A list of trusted proxies, the string 'REMOTE_ADDR' will be replaced with $_SERVER['REMOTE_ADDR']
* @param int $trustedHeaderSet A bit field of Request::HEADER_*, to set which headers to trust from your proxies
* @return void
* @static
*/
public static function setTrustedProxies($proxies, $trustedHeaderSet)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
return \Illuminate\Http\Request::setTrustedProxies($proxies, $trustedHeaderSet);
\Illuminate\Http\Request::setTrustedProxies($proxies, $trustedHeaderSet);
}
/**
* Gets the list of trusted proxies.
Expand Down Expand Up @@ -11563,11 +11593,12 @@ public static function getTrustedHeaderSet()
* You should only list the hosts you manage using regexs.
*
* @param array $hostPatterns A list of trusted host patterns
* @return void
* @static
*/
public static function setTrustedHosts($hostPatterns)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
return \Illuminate\Http\Request::setTrustedHosts($hostPatterns);
\Illuminate\Http\Request::setTrustedHosts($hostPatterns);
}
/**
* Gets the list of trusted host patterns.
Expand Down Expand Up @@ -11602,11 +11633,12 @@ public static function normalizeQueryString($qs)
*
* The HTTP method can only be overridden when the real HTTP method is POST.
*
* @return void
* @static
*/
public static function enableHttpMethodParameterOverride()
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
return \Illuminate\Http\Request::enableHttpMethodParameterOverride();
\Illuminate\Http\Request::enableHttpMethodParameterOverride();
}
/**
* Checks whether support for the _method request parameter is enabled.
Expand All @@ -11631,12 +11663,13 @@ public static function hasPreviousSession()
/**
*
*
* @return void
* @static
*/
public static function setSession($session)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->setSession($session);
$instance->setSession($session);
}
/**
*
Expand Down Expand Up @@ -11937,12 +11970,13 @@ public static function getHost()
/**
* Sets the request method.
*
* @return void
* @static
*/
public static function setMethod($method)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->setMethod($method);
$instance->setMethod($method);
}
/**
* Gets the request "intended" method.
Expand Down Expand Up @@ -12008,12 +12042,13 @@ public static function getFormat($mimeType)
* Associates a format with mime types.
*
* @param string|string[] $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type)
* @return void
* @static
*/
public static function setFormat($format, $mimeTypes)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->setFormat($format, $mimeTypes);
$instance->setFormat($format, $mimeTypes);
}
/**
* Gets the request format.
Expand All @@ -12035,12 +12070,13 @@ public static function getRequestFormat($default = 'html')
/**
* Sets the request format.
*
* @return void
* @static
*/
public static function setRequestFormat($format)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->setRequestFormat($format);
$instance->setRequestFormat($format);
}
/**
* Gets the usual name of the format associated with the request's media type (provided in the Content-Type header).
Expand All @@ -12067,12 +12103,13 @@ public static function getContentTypeFormat()
/**
* Sets the default locale.
*
* @return void
* @static
*/
public static function setDefaultLocale($locale)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->setDefaultLocale($locale);
$instance->setDefaultLocale($locale);
}
/**
* Get the default locale.
Expand All @@ -12087,12 +12124,13 @@ public static function getDefaultLocale()
/**
* Sets the locale.
*
* @return void
* @static
*/
public static function setLocale($locale)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->setLocale($locale);
$instance->setLocale($locale);
}
/**
* Get the locale.
Expand Down Expand Up @@ -12175,6 +12213,16 @@ public static function getContent($asResource = false)
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->getContent($asResource);
}
/**
* Gets the decoded form or json request body.
*
* @static
*/
public static function getPayload()
{ //Method inherited from \Symfony\Component\HttpFoundation\Request
/** @var \Illuminate\Http\Request $instance */
return $instance->getPayload();
}
/**
* Gets the Etags.
Expand Down Expand Up @@ -21548,6 +21596,19 @@ public static function forceCreate($attributes)
return $instance->forceCreate($attributes);
}

/**
* Save a new model instance with mass assignment without raising model events.
*
* @param array $attributes
* @return \Illuminate\Database\Eloquent\Model|$this
* @static
*/
public static function forceCreateQuietly($attributes = [])
{
/** @var \Illuminate\Database\Eloquent\Builder $instance */
return $instance->forceCreateQuietly($attributes);
}

/**
* Insert new records or update the existing ones.
*
Expand Down Expand Up @@ -23782,7 +23843,7 @@ public static function groupByRaw($sql, $bindings = [])
/**
* Add a "having" clause to the query.
*
* @param \Closure|string $column
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
* @param string|int|float|null $operator
* @param string|int|float|null $value
* @param string $boolean
Expand All @@ -23798,7 +23859,7 @@ public static function having($column, $operator = null, $value = null, $boolean
/**
* Add an "or having" clause to the query.
*
* @param \Closure|string $column
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
* @param string|int|float|null $operator
* @param string|int|float|null $value
* @return \Illuminate\Database\Query\Builder
Expand Down
Loading