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
130 changes: 124 additions & 6 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 11.31.0.
* Generated for Laravel 11.33.2.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -4494,8 +4494,8 @@
/**
* Get many configuration values.
*
* @param array $keys
* @return array
* @param array<string|int,mixed> $keys
* @return array<string,mixed>
* @static
*/ public static function getMany($keys)
{
Expand Down Expand Up @@ -6000,7 +6000,7 @@
* @param string $query
* @param array $bindings
* @param bool $useReadPdo
* @return \Generator
* @return \Generator<int, \stdClass>
* @static
*/ public static function cursor($query, $bindings = [], $useReadPdo = true)
{ //Method inherited from \Illuminate\Database\Connection
Expand Down Expand Up @@ -8324,6 +8324,16 @@
*/ public static function response($body = null, $status = 200, $headers = [])
{
return \Illuminate\Http\Client\Factory::response($body, $status, $headers);
}
/**
* Create a new connection exception for use during stubbing.
*
* @param string|null $message
* @return \GuzzleHttp\Promise\PromiseInterface
* @static
*/ public static function failedConnection($message = null)
{
return \Illuminate\Http\Client\Factory::failedConnection($message);
}
/**
* Get an invokable object that returns a sequence of responses in order for use during stubbing.
Expand Down Expand Up @@ -8405,7 +8415,7 @@
* Record a request response pair.
*
* @param \Illuminate\Http\Client\Request $request
* @param \Illuminate\Http\Client\Response $response
* @param \Illuminate\Http\Client\Response|null $response
* @return void
* @static
*/ public static function recordRequestResponsePair($request, $response)
Expand Down Expand Up @@ -13096,6 +13106,19 @@
{
/** @var \Illuminate\Http\Request $instance */
return $instance->enum($key, $enumClass);
}
/**
* Retrieve input from the request as an array of enums.
*
* @template TEnum
* @param string $key
* @param \Illuminate\Http\class-string<TEnum> $enumClass
* @return \Illuminate\Http\TEnum[]
* @static
*/ public static function enums($key, $enumClass)
{
/** @var \Illuminate\Http\Request $instance */
return $instance->enums($key, $enumClass);
}
/**
* Retrieve input from the request as a collection.
Expand Down Expand Up @@ -13497,7 +13520,7 @@
/**
* Create a new redirect response to a named route.
*
* @param string $route
* @param \BackedEnum|string $route
* @param mixed $parameters
* @param int $status
* @param array $headers
Expand Down Expand Up @@ -14521,6 +14544,66 @@
/**
*
*
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes withoutOverlapping(int $expiresAt = 1440)
* @method static void mergeAttributes(\Illuminate\Console\Scheduling\Event $event)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes user(string $user)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes environments(array|mixed $environments)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes evenInMaintenanceMode()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes onOneServer()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes runInBackground()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes when(\Closure|bool $callback)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes skip(\Closure|bool $callback)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes cron(string $expression)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes between(string $startTime, string $endTime)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes unlessBetween(string $startTime, string $endTime)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everySecond()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoSeconds()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFiveSeconds()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTenSeconds()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFifteenSeconds()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwentySeconds()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThirtySeconds()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyMinute()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoMinutes()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThreeMinutes()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFourMinutes()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFiveMinutes()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTenMinutes()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFifteenMinutes()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThirtyMinutes()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes hourly()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes hourlyAt(array|string|int $offset)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyOddHour(array|string|int $offset = 0)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyTwoHours(array|string|int $offset = 0)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyThreeHours(array|string|int $offset = 0)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everyFourHours(array|string|int $offset = 0)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes everySixHours(array|string|int $offset = 0)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes daily()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes at(string $time)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes dailyAt(string $time)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceDaily(int $first = 1, int $second = 13)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceDailyAt(int $first = 1, int $second = 13, int $offset = 0)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekdays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekends()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes mondays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes tuesdays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes wednesdays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes thursdays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes fridays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes saturdays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes sundays()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weekly()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes weeklyOn(array|mixed $dayOfWeek, string $time = '0:0')
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthly()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes monthlyOn(int $dayOfMonth = 1, string $time = '0:0')
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes twiceMonthly(int $first = 1, int $second = 16, string $time = '0:0')
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes lastDayOfMonth(string $time = '0:0')
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes quarterly()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes quarterlyOn(int $dayOfQuarter = 1, string $time = '0:0')
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearly()
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes yearlyOn(int $month = 1, int|string $dayOfMonth = 1, string $time = '0:0')
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes days(array|mixed $days)
* @method static \Illuminate\Console\Scheduling\PendingEventAttributes timezone(\DateTimeZone|string $timezone)
* @see \Illuminate\Console\Scheduling\Schedule
*/ class Schedule {
/**
Expand Down Expand Up @@ -14571,6 +14654,17 @@
{
/** @var \Illuminate\Console\Scheduling\Schedule $instance */
return $instance->exec($command, $parameters);
}
/**
* Create new schedule group.
*
* @param \Illuminate\Console\Scheduling\Event $event
* @return void
* @static
*/ public static function group($events)
{
/** @var \Illuminate\Console\Scheduling\Schedule $instance */
$instance->group($events);
}
/**
* Compile array input for a command.
Expand Down Expand Up @@ -14670,6 +14764,19 @@
*/ public static function flushMacros()
{
\Illuminate\Console\Scheduling\Schedule::flushMacros();
}
/**
* Dynamically handle calls to the class.
*
* @param string $method
* @param array $parameters
* @return mixed
* @throws \BadMethodCallException
* @static
*/ public static function macroCall($method, $parameters)
{
/** @var \Illuminate\Console\Scheduling\Schedule $instance */
return $instance->macroCall($method, $parameters);
}
}
/**
Expand Down Expand Up @@ -23061,6 +23168,17 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
{
/** @var \Illuminate\Database\Eloquent\Builder $instance */
return $instance->create($attributes);
}
/**
* Save a new model and return the instance without raising model events.
*
* @param array $attributes
* @return \Illuminate\Database\Eloquent\TModel
* @static
*/ public static function createQuietly($attributes = [])
{
/** @var \Illuminate\Database\Eloquent\Builder $instance */
return $instance->createQuietly($attributes);
}
/**
* Save a new model and return the instance. Allow mass-assignment.
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"guzzlehttp/guzzle": "^7.9.2",
"influxdata/influxdb-client-php": "^3.6",
"laravel-notification-channels/telegram": "^5.0",
"laravel/framework": "^11.31",
"laravel/prompts": "^0.2.1",
"laravel/sanctum": "^4.0.3",
"laravel/framework": "^11.33.2",
"laravel/prompts": "^0.3.2",
"laravel/sanctum": "^4.0.4",
"laravel/tinker": "^2.10.0",
"livewire/livewire": "^3.5.12",
"lorisleiva/laravel-actions": "^2.8.4",
Expand All @@ -38,7 +38,7 @@
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.2.2",
"fakerphp/faker": "^1.24.0",
"laravel/pint": "^1.18.1",
"laravel/pint": "^1.18.2",
"laravel/sail": "^1.38.0",
"laravel/telescope": "^5.2.5",
"mockery/mockery": "^1.6.12",
Expand Down
Loading