diff --git a/_ide_helper.php b/_ide_helper.php index 872d874ef..3134e6b9d 100644 --- a/_ide_helper.php +++ b/_ide_helper.php @@ -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! * @@ -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. @@ -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 @@ -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. @@ -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. @@ -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') @@ -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. @@ -11505,11 +11532,12 @@ 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. @@ -11517,12 +11545,13 @@ public static function setFactory($callable) * 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. @@ -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. @@ -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. @@ -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. @@ -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); } /** * @@ -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. @@ -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. @@ -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). @@ -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. @@ -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. @@ -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. @@ -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. * @@ -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 @@ -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 diff --git a/composer.lock b/composer.lock index f60c6dde2..774308c13 100644 --- a/composer.lock +++ b/composer.lock @@ -1346,16 +1346,16 @@ }, { "name": "filament/filament", - "version": "v2.17.44", + "version": "v2.17.46", "source": { "type": "git", "url": "https://github.com/filamentphp/panels.git", - "reference": "a7658bd50da4b35322f1c1616de4b6abd7a6b7a8" + "reference": "5da132736a6bde74c7107bdbefd8e0383af5bd39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/panels/zipball/a7658bd50da4b35322f1c1616de4b6abd7a6b7a8", - "reference": "a7658bd50da4b35322f1c1616de4b6abd7a6b7a8", + "url": "https://api.github.com/repos/filamentphp/panels/zipball/5da132736a6bde74c7107bdbefd8e0383af5bd39", + "reference": "5da132736a6bde74c7107bdbefd8e0383af5bd39", "shasum": "" }, "require": { @@ -1376,7 +1376,6 @@ "illuminate/view": "^8.6|^9.0|^10.0", "livewire/livewire": "^2.10.7", "php": "^8.0", - "ryangjchandler/blade-capture-directive": "^0.2|^0.3", "spatie/laravel-package-tools": "^1.9" }, "type": "library", @@ -1405,20 +1404,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2023-05-30T10:44:54+00:00" + "time": "2023-06-07T07:11:02+00:00" }, { "name": "filament/forms", - "version": "v2.17.44", + "version": "v2.17.46", "source": { "type": "git", "url": "https://github.com/filamentphp/forms.git", - "reference": "c6b5d4f04716f14a4d5f63f76c8b94df8029a17f" + "reference": "b41dc730783813f5622a9bad5f81a767fe94f7af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/forms/zipball/c6b5d4f04716f14a4d5f63f76c8b94df8029a17f", - "reference": "c6b5d4f04716f14a4d5f63f76c8b94df8029a17f", + "url": "https://api.github.com/repos/filamentphp/forms/zipball/b41dc730783813f5622a9bad5f81a767fe94f7af", + "reference": "b41dc730783813f5622a9bad5f81a767fe94f7af", "shasum": "" }, "require": { @@ -1463,20 +1462,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2023-05-30T10:44:57+00:00" + "time": "2023-06-06T11:21:25+00:00" }, { "name": "filament/notifications", - "version": "v2.17.44", + "version": "v2.17.46", "source": { "type": "git", "url": "https://github.com/filamentphp/notifications.git", - "reference": "a9bee8c8b7cdf1df798311acdf57895d73dd3af7" + "reference": "2a0a808bff7b6eb036aa7d652e2167c3b3d7bd29" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/notifications/zipball/a9bee8c8b7cdf1df798311acdf57895d73dd3af7", - "reference": "a9bee8c8b7cdf1df798311acdf57895d73dd3af7", + "url": "https://api.github.com/repos/filamentphp/notifications/zipball/2a0a808bff7b6eb036aa7d652e2167c3b3d7bd29", + "reference": "2a0a808bff7b6eb036aa7d652e2167c3b3d7bd29", "shasum": "" }, "require": { @@ -1516,11 +1515,11 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2023-05-30T10:44:51+00:00" + "time": "2023-06-06T11:21:19+00:00" }, { "name": "filament/spatie-laravel-settings-plugin", - "version": "v2.17.44", + "version": "v2.17.46", "source": { "type": "git", "url": "https://github.com/filamentphp/spatie-laravel-settings-plugin.git", @@ -1567,16 +1566,16 @@ }, { "name": "filament/support", - "version": "v2.17.44", + "version": "v2.17.46", "source": { "type": "git", "url": "https://github.com/filamentphp/support.git", - "reference": "fe7434dd07b254de0d9cc7d9178540ad8b087cca" + "reference": "2fc7b60416283c17a7b8ce2f8d65d4d02ed766fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/support/zipball/fe7434dd07b254de0d9cc7d9178540ad8b087cca", - "reference": "fe7434dd07b254de0d9cc7d9178540ad8b087cca", + "url": "https://api.github.com/repos/filamentphp/support/zipball/2fc7b60416283c17a7b8ce2f8d65d4d02ed766fb", + "reference": "2fc7b60416283c17a7b8ce2f8d65d4d02ed766fb", "shasum": "" }, "require": { @@ -1584,6 +1583,7 @@ "illuminate/support": "^8.6|^9.0|^10.0", "illuminate/view": "^8.6|^9.0|^10.0", "php": "^8.0", + "ryangjchandler/blade-capture-directive": "^0.2|^0.3", "spatie/laravel-package-tools": "^1.9", "tgalopin/html-sanitizer": "^1.5" }, @@ -1613,20 +1613,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2023-05-30T10:44:54+00:00" + "time": "2023-06-06T11:21:22+00:00" }, { "name": "filament/tables", - "version": "v2.17.44", + "version": "v2.17.46", "source": { "type": "git", "url": "https://github.com/filamentphp/tables.git", - "reference": "57833d3f09c6ec5fbbabec5a0e47944b972ceaa3" + "reference": "84529e8c00bd54fb2816c6f0a5a8802e95672c1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/tables/zipball/57833d3f09c6ec5fbbabec5a0e47944b972ceaa3", - "reference": "57833d3f09c6ec5fbbabec5a0e47944b972ceaa3", + "url": "https://api.github.com/repos/filamentphp/tables/zipball/84529e8c00bd54fb2816c6f0a5a8802e95672c1a", + "reference": "84529e8c00bd54fb2816c6f0a5a8802e95672c1a", "shasum": "" }, "require": { @@ -1669,7 +1669,7 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2023-05-30T10:44:53+00:00" + "time": "2023-06-07T07:10:56+00:00" }, { "name": "fruitcake/php-cors", @@ -2335,16 +2335,16 @@ }, { "name": "laravel/framework", - "version": "v10.13.2", + "version": "v10.13.5", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "fd4619b56b56308e2c2c1840fedd0b8ebb73dfc5" + "reference": "03106ae9ba2ec4b36dc973b7bdca6fad81e032b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/fd4619b56b56308e2c2c1840fedd0b8ebb73dfc5", - "reference": "fd4619b56b56308e2c2c1840fedd0b8ebb73dfc5", + "url": "https://api.github.com/repos/laravel/framework/zipball/03106ae9ba2ec4b36dc973b7bdca6fad81e032b4", + "reference": "03106ae9ba2ec4b36dc973b7bdca6fad81e032b4", "shasum": "" }, "require": { @@ -2531,7 +2531,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2023-06-05T15:48:15+00:00" + "time": "2023-06-08T20:25:36+00:00" }, { "name": "laravel/sanctum", @@ -8864,16 +8864,16 @@ }, { "name": "laravel/pint", - "version": "v1.10.0", + "version": "v1.10.1", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc" + "reference": "d69f914aa347a448628b672ba90adf0b4ea0ce4a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc", - "reference": "c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc", + "url": "https://api.github.com/repos/laravel/pint/zipball/d69f914aa347a448628b672ba90adf0b4ea0ce4a", + "reference": "d69f914aa347a448628b672ba90adf0b4ea0ce4a", "shasum": "" }, "require": { @@ -8884,7 +8884,7 @@ "php": "^8.1.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.16.0", + "friendsofphp/php-cs-fixer": "^3.17.0", "illuminate/view": "^10.5.1", "laravel-zero/framework": "^10.0.2", "mockery/mockery": "^1.5.1", @@ -8926,7 +8926,7 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2023-04-25T14:52:30+00:00" + "time": "2023-06-03T15:01:17+00:00" }, { "name": "laravel/sail", @@ -8995,16 +8995,16 @@ }, { "name": "mockery/mockery", - "version": "1.6.1", + "version": "1.6.2", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "a8dd186f07ea667c1e3abd2176bfab0ab161ea94" + "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/a8dd186f07ea667c1e3abd2176bfab0ab161ea94", - "reference": "a8dd186f07ea667c1e3abd2176bfab0ab161ea94", + "url": "https://api.github.com/repos/mockery/mockery/zipball/13a7fa2642c76c58fa2806ef7f565344c817a191", + "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191", "shasum": "" }, "require": { @@ -9023,7 +9023,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-main": "1.6.x-dev" } }, "autoload": { @@ -9067,9 +9067,9 @@ ], "support": { "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.6.1" + "source": "https://github.com/mockery/mockery/tree/1.6.2" }, - "time": "2023-06-05T13:59:03+00:00" + "time": "2023-06-07T09:07:52+00:00" }, { "name": "myclabs/deep-copy", @@ -10801,16 +10801,16 @@ }, { "name": "spatie/ignition", - "version": "1.8.0", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/spatie/ignition.git", - "reference": "ad13a6792992411e05d3d3b293e26bdf9f9a7321" + "reference": "d8eb8ea1ed27f48a694405cff363746ffd37f13e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ignition/zipball/ad13a6792992411e05d3d3b293e26bdf9f9a7321", - "reference": "ad13a6792992411e05d3d3b293e26bdf9f9a7321", + "url": "https://api.github.com/repos/spatie/ignition/zipball/d8eb8ea1ed27f48a694405cff363746ffd37f13e", + "reference": "d8eb8ea1ed27f48a694405cff363746ffd37f13e", "shasum": "" }, "require": { @@ -10880,7 +10880,7 @@ "type": "github" } ], - "time": "2023-05-25T10:19:32+00:00" + "time": "2023-06-06T14:14:58+00:00" }, { "name": "spatie/laravel-ignition",