Skip to content

Commit 16fa23d

Browse files
Laravel 11.33.2 Shift (alexjustesen#1796)
* Bump Laravel version constraint * Bump community package dependencies * composer update * updated composer dependencies --------- Co-authored-by: Shift <[email protected]>
1 parent 225b7d9 commit 16fa23d

File tree

3 files changed

+199
-80
lines changed

3 files changed

+199
-80
lines changed

_ide_helper.php

Lines changed: 124 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/**
77
* A helper file for Laravel, to provide autocomplete information to your IDE
8-
* Generated for Laravel 11.31.0.
8+
* Generated for Laravel 11.33.2.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -4494,8 +4494,8 @@
44944494
/**
44954495
* Get many configuration values.
44964496
*
4497-
* @param array $keys
4498-
* @return array
4497+
* @param array<string|int,mixed> $keys
4498+
* @return array<string,mixed>
44994499
* @static
45004500
*/ public static function getMany($keys)
45014501
{
@@ -6000,7 +6000,7 @@
60006000
* @param string $query
60016001
* @param array $bindings
60026002
* @param bool $useReadPdo
6003-
* @return \Generator
6003+
* @return \Generator<int, \stdClass>
60046004
* @static
60056005
*/ public static function cursor($query, $bindings = [], $useReadPdo = true)
60066006
{ //Method inherited from \Illuminate\Database\Connection
@@ -8324,6 +8324,16 @@
83248324
*/ public static function response($body = null, $status = 200, $headers = [])
83258325
{
83268326
return \Illuminate\Http\Client\Factory::response($body, $status, $headers);
8327+
}
8328+
/**
8329+
* Create a new connection exception for use during stubbing.
8330+
*
8331+
* @param string|null $message
8332+
* @return \GuzzleHttp\Promise\PromiseInterface
8333+
* @static
8334+
*/ public static function failedConnection($message = null)
8335+
{
8336+
return \Illuminate\Http\Client\Factory::failedConnection($message);
83278337
}
83288338
/**
83298339
* Get an invokable object that returns a sequence of responses in order for use during stubbing.
@@ -8405,7 +8415,7 @@
84058415
* Record a request response pair.
84068416
*
84078417
* @param \Illuminate\Http\Client\Request $request
8408-
* @param \Illuminate\Http\Client\Response $response
8418+
* @param \Illuminate\Http\Client\Response|null $response
84098419
* @return void
84108420
* @static
84118421
*/ public static function recordRequestResponsePair($request, $response)
@@ -13096,6 +13106,19 @@
1309613106
{
1309713107
/** @var \Illuminate\Http\Request $instance */
1309813108
return $instance->enum($key, $enumClass);
13109+
}
13110+
/**
13111+
* Retrieve input from the request as an array of enums.
13112+
*
13113+
* @template TEnum
13114+
* @param string $key
13115+
* @param \Illuminate\Http\class-string<TEnum> $enumClass
13116+
* @return \Illuminate\Http\TEnum[]
13117+
* @static
13118+
*/ public static function enums($key, $enumClass)
13119+
{
13120+
/** @var \Illuminate\Http\Request $instance */
13121+
return $instance->enums($key, $enumClass);
1309913122
}
1310013123
/**
1310113124
* Retrieve input from the request as a collection.
@@ -13497,7 +13520,7 @@
1349713520
/**
1349813521
* Create a new redirect response to a named route.
1349913522
*
13500-
* @param string $route
13523+
* @param \BackedEnum|string $route
1350113524
* @param mixed $parameters
1350213525
* @param int $status
1350313526
* @param array $headers
@@ -14521,6 +14544,66 @@
1452114544
/**
1452214545
*
1452314546
*
14547+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes withoutOverlapping(int $expiresAt = 1440)
14548+
* @method static void mergeAttributes(\Illuminate\Console\Scheduling\Event $event)
14549+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes user(string $user)
14550+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes environments(array|mixed $environments)
14551+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes evenInMaintenanceMode()
14552+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes onOneServer()
14553+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes runInBackground()
14554+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes when(\Closure|bool $callback)
14555+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes skip(\Closure|bool $callback)
14556+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes cron(string $expression)
14557+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes between(string $startTime, string $endTime)
14558+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes unlessBetween(string $startTime, string $endTime)
14559+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everySecond()
14560+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoSeconds()
14561+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFiveSeconds()
14562+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTenSeconds()
14563+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFifteenSeconds()
14564+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwentySeconds()
14565+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThirtySeconds()
14566+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyMinute()
14567+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoMinutes()
14568+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThreeMinutes()
14569+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFourMinutes()
14570+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFiveMinutes()
14571+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTenMinutes()
14572+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFifteenMinutes()
14573+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThirtyMinutes()
14574+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes hourly()
14575+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes hourlyAt(array|string|int $offset)
14576+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyOddHour(array|string|int $offset = 0)
14577+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoHours(array|string|int $offset = 0)
14578+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThreeHours(array|string|int $offset = 0)
14579+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFourHours(array|string|int $offset = 0)
14580+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everySixHours(array|string|int $offset = 0)
14581+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes daily()
14582+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes at(string $time)
14583+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes dailyAt(string $time)
14584+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceDaily(int $first = 1, int $second = 13)
14585+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceDailyAt(int $first = 1, int $second = 13, int $offset = 0)
14586+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekdays()
14587+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekends()
14588+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes mondays()
14589+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes tuesdays()
14590+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes wednesdays()
14591+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes thursdays()
14592+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes fridays()
14593+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes saturdays()
14594+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes sundays()
14595+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekly()
14596+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weeklyOn(array|mixed $dayOfWeek, string $time = '0:0')
14597+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthly()
14598+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthlyOn(int $dayOfMonth = 1, string $time = '0:0')
14599+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceMonthly(int $first = 1, int $second = 16, string $time = '0:0')
14600+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes lastDayOfMonth(string $time = '0:0')
14601+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes quarterly()
14602+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes quarterlyOn(int $dayOfQuarter = 1, string $time = '0:0')
14603+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearly()
14604+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearlyOn(int $month = 1, int|string $dayOfMonth = 1, string $time = '0:0')
14605+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes days(array|mixed $days)
14606+
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes timezone(\DateTimeZone|string $timezone)
1452414607
* @see \Illuminate\Console\Scheduling\Schedule
1452514608
*/ class Schedule {
1452614609
/**
@@ -14571,6 +14654,17 @@
1457114654
{
1457214655
/** @var \Illuminate\Console\Scheduling\Schedule $instance */
1457314656
return $instance->exec($command, $parameters);
14657+
}
14658+
/**
14659+
* Create new schedule group.
14660+
*
14661+
* @param \Illuminate\Console\Scheduling\Event $event
14662+
* @return void
14663+
* @static
14664+
*/ public static function group($events)
14665+
{
14666+
/** @var \Illuminate\Console\Scheduling\Schedule $instance */
14667+
$instance->group($events);
1457414668
}
1457514669
/**
1457614670
* Compile array input for a command.
@@ -14670,6 +14764,19 @@
1467014764
*/ public static function flushMacros()
1467114765
{
1467214766
\Illuminate\Console\Scheduling\Schedule::flushMacros();
14767+
}
14768+
/**
14769+
* Dynamically handle calls to the class.
14770+
*
14771+
* @param string $method
14772+
* @param array $parameters
14773+
* @return mixed
14774+
* @throws \BadMethodCallException
14775+
* @static
14776+
*/ public static function macroCall($method, $parameters)
14777+
{
14778+
/** @var \Illuminate\Console\Scheduling\Schedule $instance */
14779+
return $instance->macroCall($method, $parameters);
1467314780
}
1467414781
}
1467514782
/**
@@ -23061,6 +23168,17 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2306123168
{
2306223169
/** @var \Illuminate\Database\Eloquent\Builder $instance */
2306323170
return $instance->create($attributes);
23171+
}
23172+
/**
23173+
* Save a new model and return the instance without raising model events.
23174+
*
23175+
* @param array $attributes
23176+
* @return \Illuminate\Database\Eloquent\TModel
23177+
* @static
23178+
*/ public static function createQuietly($attributes = [])
23179+
{
23180+
/** @var \Illuminate\Database\Eloquent\Builder $instance */
23181+
return $instance->createQuietly($attributes);
2306423182
}
2306523183
/**
2306623184
* Save a new model and return the instance. Allow mass-assignment.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"guzzlehttp/guzzle": "^7.9.2",
2525
"influxdata/influxdb-client-php": "^3.6",
2626
"laravel-notification-channels/telegram": "^5.0",
27-
"laravel/framework": "^11.31",
28-
"laravel/prompts": "^0.2.1",
29-
"laravel/sanctum": "^4.0.3",
27+
"laravel/framework": "^11.33.2",
28+
"laravel/prompts": "^0.3.2",
29+
"laravel/sanctum": "^4.0.4",
3030
"laravel/tinker": "^2.10.0",
3131
"livewire/livewire": "^3.5.12",
3232
"lorisleiva/laravel-actions": "^2.8.4",
@@ -38,7 +38,7 @@
3838
"require-dev": {
3939
"barryvdh/laravel-ide-helper": "^3.2.2",
4040
"fakerphp/faker": "^1.24.0",
41-
"laravel/pint": "^1.18.1",
41+
"laravel/pint": "^1.18.2",
4242
"laravel/sail": "^1.38.0",
4343
"laravel/telescope": "^5.2.5",
4444
"mockery/mockery": "^1.6.12",

0 commit comments

Comments
 (0)