|
5 | 5 |
|
6 | 6 | /** |
7 | 7 | * 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. |
9 | 9 | * |
10 | 10 | * This file should not be included in your code, only analyzed by your IDE! |
11 | 11 | * |
|
4494 | 4494 | /** |
4495 | 4495 | * Get many configuration values. |
4496 | 4496 | * |
4497 | | - * @param array $keys |
4498 | | - * @return array |
| 4497 | + * @param array<string|int,mixed> $keys |
| 4498 | + * @return array<string,mixed> |
4499 | 4499 | * @static |
4500 | 4500 | */ public static function getMany($keys) |
4501 | 4501 | { |
|
6000 | 6000 | * @param string $query |
6001 | 6001 | * @param array $bindings |
6002 | 6002 | * @param bool $useReadPdo |
6003 | | - * @return \Generator |
| 6003 | + * @return \Generator<int, \stdClass> |
6004 | 6004 | * @static |
6005 | 6005 | */ public static function cursor($query, $bindings = [], $useReadPdo = true) |
6006 | 6006 | { //Method inherited from \Illuminate\Database\Connection |
|
8324 | 8324 | */ public static function response($body = null, $status = 200, $headers = []) |
8325 | 8325 | { |
8326 | 8326 | 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); |
8327 | 8337 | } |
8328 | 8338 | /** |
8329 | 8339 | * Get an invokable object that returns a sequence of responses in order for use during stubbing. |
|
8405 | 8415 | * Record a request response pair. |
8406 | 8416 | * |
8407 | 8417 | * @param \Illuminate\Http\Client\Request $request |
8408 | | - * @param \Illuminate\Http\Client\Response $response |
| 8418 | + * @param \Illuminate\Http\Client\Response|null $response |
8409 | 8419 | * @return void |
8410 | 8420 | * @static |
8411 | 8421 | */ public static function recordRequestResponsePair($request, $response) |
|
13096 | 13106 | { |
13097 | 13107 | /** @var \Illuminate\Http\Request $instance */ |
13098 | 13108 | 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); |
13099 | 13122 | } |
13100 | 13123 | /** |
13101 | 13124 | * Retrieve input from the request as a collection. |
|
13497 | 13520 | /** |
13498 | 13521 | * Create a new redirect response to a named route. |
13499 | 13522 | * |
13500 | | - * @param string $route |
| 13523 | + * @param \BackedEnum|string $route |
13501 | 13524 | * @param mixed $parameters |
13502 | 13525 | * @param int $status |
13503 | 13526 | * @param array $headers |
|
14521 | 14544 | /** |
14522 | 14545 | * |
14523 | 14546 | * |
| 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) |
14524 | 14607 | * @see \Illuminate\Console\Scheduling\Schedule |
14525 | 14608 | */ class Schedule { |
14526 | 14609 | /** |
|
14571 | 14654 | { |
14572 | 14655 | /** @var \Illuminate\Console\Scheduling\Schedule $instance */ |
14573 | 14656 | 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); |
14574 | 14668 | } |
14575 | 14669 | /** |
14576 | 14670 | * Compile array input for a command. |
|
14670 | 14764 | */ public static function flushMacros() |
14671 | 14765 | { |
14672 | 14766 | \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); |
14673 | 14780 | } |
14674 | 14781 | } |
14675 | 14782 | /** |
@@ -23061,6 +23168,17 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model { |
23061 | 23168 | { |
23062 | 23169 | /** @var \Illuminate\Database\Eloquent\Builder $instance */ |
23063 | 23170 | 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); |
23064 | 23182 | } |
23065 | 23183 | /** |
23066 | 23184 | * Save a new model and return the instance. Allow mass-assignment. |
|
0 commit comments