Skip to content

Commit 811fbfc

Browse files
Laravel 11.20.0 Shift (alexjustesen#1644)
* Bump Laravel version constraint * composer update * updated composer dependencies --------- Co-authored-by: Shift <[email protected]>
1 parent bbdd20d commit 811fbfc

File tree

3 files changed

+134
-73
lines changed

3 files changed

+134
-73
lines changed

_ide_helper.php

Lines changed: 73 additions & 13 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.19.0.
8+
* Generated for Laravel 11.20.0.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -3573,7 +3573,7 @@
35733573
*
35743574
*
35753575
* @see \Illuminate\Cache\CacheManager
3576-
* @mixin \Illuminate\Cache\Repository
3576+
* @see \Illuminate\Cache\Repository
35773577
*/ class Cache {
35783578
/**
35793579
* Get a cache store instance by name, wrapped in a repository.
@@ -4696,6 +4696,34 @@
46964696
{
46974697
/** @var \Illuminate\Log\Context\Repository $instance */
46984698
return $instance->pushHidden($key, ...$values);
4699+
}
4700+
/**
4701+
* Determine if the given value is in the given stack.
4702+
*
4703+
* @param string $key
4704+
* @param mixed $value
4705+
* @param bool $strict
4706+
* @return bool
4707+
* @throws \RuntimeException
4708+
* @static
4709+
*/ public static function stackContains($key, $value, $strict = false)
4710+
{
4711+
/** @var \Illuminate\Log\Context\Repository $instance */
4712+
return $instance->stackContains($key, $value, $strict);
4713+
}
4714+
/**
4715+
* Determine if the given value is in the given hidden stack.
4716+
*
4717+
* @param string $key
4718+
* @param mixed $value
4719+
* @param bool $strict
4720+
* @return bool
4721+
* @throws \RuntimeException
4722+
* @static
4723+
*/ public static function hiddenStackContains($key, $value, $strict = false)
4724+
{
4725+
/** @var \Illuminate\Log\Context\Repository $instance */
4726+
return $instance->hiddenStackContains($key, $value, $strict);
46994727
}
47004728
/**
47014729
* Determine if the repository is empty.
@@ -5525,6 +5553,16 @@
55255553
{
55265554
/** @var \Illuminate\Database\DatabaseManager $instance */
55275555
return $instance->macroCall($method, $parameters);
5556+
}
5557+
/**
5558+
* Get a human-readable name for the given connection driver.
5559+
*
5560+
* @return string
5561+
* @static
5562+
*/ public static function getDriverTitle()
5563+
{
5564+
/** @var \Illuminate\Database\SQLiteConnection $instance */
5565+
return $instance->getDriverTitle();
55285566
}
55295567
/**
55305568
* Get a schema builder instance for the connection.
@@ -5748,6 +5786,16 @@
57485786
{ //Method inherited from \Illuminate\Database\Connection
57495787
/** @var \Illuminate\Database\SQLiteConnection $instance */
57505788
return $instance->unprepared($query);
5789+
}
5790+
/**
5791+
* Get the number of open connections for the database.
5792+
*
5793+
* @return int|null
5794+
* @static
5795+
*/ public static function threadCount()
5796+
{ //Method inherited from \Illuminate\Database\Connection
5797+
/** @var \Illuminate\Database\SQLiteConnection $instance */
5798+
return $instance->threadCount();
57515799
}
57525800
/**
57535801
* Execute the given callback in "dry run" mode.
@@ -7802,6 +7850,18 @@
78027850
{
78037851
/** @var \Illuminate\Hashing\HashManager $instance */
78047852
return $instance->getDefaultDriver();
7853+
}
7854+
/**
7855+
* Verifies that the configuration is less than or equal to what is configured.
7856+
*
7857+
* @param array $value
7858+
* @return bool
7859+
* @internal
7860+
* @static
7861+
*/ public static function verifyConfiguration($value)
7862+
{
7863+
/** @var \Illuminate\Hashing\HashManager $instance */
7864+
return $instance->verifyConfiguration($value);
78057865
}
78067866
/**
78077867
* Get a driver instance.
@@ -25136,7 +25196,7 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2513625196
/**
2513725197
* Add a "where" clause to the query for multiple columns with "and" conditions between them.
2513825198
*
25139-
* @param string[] $columns
25199+
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
2514025200
* @param mixed $operator
2514125201
* @param mixed $value
2514225202
* @param string $boolean
@@ -25150,8 +25210,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2515025210
/**
2515125211
* Add an "or where" clause to the query for multiple columns with "and" conditions between them.
2515225212
*
25153-
* @param string[] $columns
25154-
* @param string $operator
25213+
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
25214+
* @param mixed $operator
2515525215
* @param mixed $value
2515625216
* @return \Illuminate\Database\Query\Builder
2515725217
* @static
@@ -25163,8 +25223,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2516325223
/**
2516425224
* Add a "where" clause to the query for multiple columns with "or" conditions between them.
2516525225
*
25166-
* @param string[] $columns
25167-
* @param string $operator
25226+
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
25227+
* @param mixed $operator
2516825228
* @param mixed $value
2516925229
* @param string $boolean
2517025230
* @return \Illuminate\Database\Query\Builder
@@ -25177,8 +25237,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2517725237
/**
2517825238
* Add an "or where" clause to the query for multiple columns with "or" conditions between them.
2517925239
*
25180-
* @param string[] $columns
25181-
* @param string $operator
25240+
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
25241+
* @param mixed $operator
2518225242
* @param mixed $value
2518325243
* @return \Illuminate\Database\Query\Builder
2518425244
* @static
@@ -25190,8 +25250,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2519025250
/**
2519125251
* Add a "where not" clause to the query for multiple columns where none of the conditions should be true.
2519225252
*
25193-
* @param string[] $columns
25194-
* @param string $operator
25253+
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
25254+
* @param mixed $operator
2519525255
* @param mixed $value
2519625256
* @param string $boolean
2519725257
* @return \Illuminate\Database\Query\Builder
@@ -25204,8 +25264,8 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2520425264
/**
2520525265
* Add an "or where not" clause to the query for multiple columns where none of the conditions should be true.
2520625266
*
25207-
* @param string[] $columns
25208-
* @param string $operator
25267+
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
25268+
* @param mixed $operator
2520925269
* @param mixed $value
2521025270
* @return \Illuminate\Database\Query\Builder
2521125271
* @static

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
"guzzlehttp/guzzle": "^7.9.2",
1919
"influxdata/influxdb-client-php": "^3.6",
2020
"laravel-notification-channels/telegram": "^5.0",
21-
"laravel/framework": "^11.19",
21+
"laravel/framework": "^11.20",
2222
"laravel/prompts": "^0.1.24",
2323
"laravel/sanctum": "^4.0.2",
2424
"laravel/tinker": "^2.9.0",
2525
"livewire/livewire": "^3.5.4",
26-
"lorisleiva/laravel-actions": "^2.8.0",
26+
"lorisleiva/laravel-actions": "^2.8.1",
2727
"maennchen/zipstream-php": "^2.4",
2828
"spatie/laravel-settings": "^3.3.2",
2929
"spatie/laravel-webhook-server": "^3.8.1",
@@ -32,9 +32,9 @@
3232
"require-dev": {
3333
"barryvdh/laravel-ide-helper": "^3.1",
3434
"fakerphp/faker": "^1.23.1",
35-
"laravel/pint": "^1.17.1",
36-
"laravel/sail": "^1.31.0",
37-
"laravel/telescope": "^5.1.1",
35+
"laravel/pint": "^1.17.2",
36+
"laravel/sail": "^1.31.1",
37+
"laravel/telescope": "^5.2.0",
3838
"mockery/mockery": "^1.6.12",
3939
"nunomaduro/collision": "^8.4.0",
4040
"phpunit/phpunit": "^11.3.0",

0 commit comments

Comments
 (0)