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
86 changes: 73 additions & 13 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.19.0.
* Generated for Laravel 11.20.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -3573,7 +3573,7 @@
*
*
* @see \Illuminate\Cache\CacheManager
* @mixin \Illuminate\Cache\Repository
* @see \Illuminate\Cache\Repository
*/ class Cache {
/**
* Get a cache store instance by name, wrapped in a repository.
Expand Down Expand Up @@ -4696,6 +4696,34 @@
{
/** @var \Illuminate\Log\Context\Repository $instance */
return $instance->pushHidden($key, ...$values);
}
/**
* Determine if the given value is in the given stack.
*
* @param string $key
* @param mixed $value
* @param bool $strict
* @return bool
* @throws \RuntimeException
* @static
*/ public static function stackContains($key, $value, $strict = false)
{
/** @var \Illuminate\Log\Context\Repository $instance */
return $instance->stackContains($key, $value, $strict);
}
/**
* Determine if the given value is in the given hidden stack.
*
* @param string $key
* @param mixed $value
* @param bool $strict
* @return bool
* @throws \RuntimeException
* @static
*/ public static function hiddenStackContains($key, $value, $strict = false)
{
/** @var \Illuminate\Log\Context\Repository $instance */
return $instance->hiddenStackContains($key, $value, $strict);
}
/**
* Determine if the repository is empty.
Expand Down Expand Up @@ -5525,6 +5553,16 @@
{
/** @var \Illuminate\Database\DatabaseManager $instance */
return $instance->macroCall($method, $parameters);
}
/**
* Get a human-readable name for the given connection driver.
*
* @return string
* @static
*/ public static function getDriverTitle()
{
/** @var \Illuminate\Database\SQLiteConnection $instance */
return $instance->getDriverTitle();
}
/**
* Get a schema builder instance for the connection.
Expand Down Expand Up @@ -5748,6 +5786,16 @@
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\SQLiteConnection $instance */
return $instance->unprepared($query);
}
/**
* Get the number of open connections for the database.
*
* @return int|null
* @static
*/ public static function threadCount()
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\SQLiteConnection $instance */
return $instance->threadCount();
}
/**
* Execute the given callback in "dry run" mode.
Expand Down Expand Up @@ -7802,6 +7850,18 @@
{
/** @var \Illuminate\Hashing\HashManager $instance */
return $instance->getDefaultDriver();
}
/**
* Verifies that the configuration is less than or equal to what is configured.
*
* @param array $value
* @return bool
* @internal
* @static
*/ public static function verifyConfiguration($value)
{
/** @var \Illuminate\Hashing\HashManager $instance */
return $instance->verifyConfiguration($value);
}
/**
* Get a driver instance.
Expand Down Expand Up @@ -25136,7 +25196,7 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
/**
* Add a "where" clause to the query for multiple columns with "and" conditions between them.
*
* @param string[] $columns
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @param string $boolean
Expand All @@ -25150,8 +25210,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
/**
* Add an "or where" clause to the query for multiple columns with "and" conditions between them.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @return \Illuminate\Database\Query\Builder
* @static
Expand All @@ -25163,8 +25223,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
/**
* Add a "where" clause to the query for multiple columns with "or" conditions between them.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @param string $boolean
* @return \Illuminate\Database\Query\Builder
Expand All @@ -25177,8 +25237,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
/**
* Add an "or where" clause to the query for multiple columns with "or" conditions between them.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @return \Illuminate\Database\Query\Builder
* @static
Expand All @@ -25190,8 +25250,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
/**
* Add a "where not" clause to the query for multiple columns where none of the conditions should be true.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @param string $boolean
* @return \Illuminate\Database\Query\Builder
Expand All @@ -25204,8 +25264,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
/**
* Add an "or where not" clause to the query for multiple columns where none of the conditions should be true.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @return \Illuminate\Database\Query\Builder
* @static
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"guzzlehttp/guzzle": "^7.9.2",
"influxdata/influxdb-client-php": "^3.6",
"laravel-notification-channels/telegram": "^5.0",
"laravel/framework": "^11.19",
"laravel/framework": "^11.20",
"laravel/prompts": "^0.1.24",
"laravel/sanctum": "^4.0.2",
"laravel/tinker": "^2.9.0",
"livewire/livewire": "^3.5.4",
"lorisleiva/laravel-actions": "^2.8.0",
"lorisleiva/laravel-actions": "^2.8.1",
"maennchen/zipstream-php": "^2.4",
"spatie/laravel-settings": "^3.3.2",
"spatie/laravel-webhook-server": "^3.8.1",
Expand All @@ -32,9 +32,9 @@
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.1",
"fakerphp/faker": "^1.23.1",
"laravel/pint": "^1.17.1",
"laravel/sail": "^1.31.0",
"laravel/telescope": "^5.1.1",
"laravel/pint": "^1.17.2",
"laravel/sail": "^1.31.1",
"laravel/telescope": "^5.2.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.4.0",
"phpunit/phpunit": "^11.3.0",
Expand Down
Loading