Skip to content

Commit defd665

Browse files
Laravel 11.31.0 Shift (alexjustesen#1788)
* Bump Laravel version constraint * composer update * updated composer dependencies --------- Co-authored-by: Shift <[email protected]>
1 parent 68b4e6e commit defd665

File tree

3 files changed

+249
-165
lines changed

3 files changed

+249
-165
lines changed

_ide_helper.php

Lines changed: 92 additions & 10 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.30.0.
8+
* Generated for Laravel 11.31.0.
99
*
1010
* This file should not be included in your code, only analyzed by your IDE!
1111
*
@@ -876,6 +876,17 @@
876876
{
877877
/** @var \Illuminate\Foundation\Application $instance */
878878
$instance->setDeferredServices($services);
879+
}
880+
/**
881+
* Determine if the given service is a deferred service.
882+
*
883+
* @param string $service
884+
* @return bool
885+
* @static
886+
*/ public static function isDeferredService($service)
887+
{
888+
/** @var \Illuminate\Foundation\Application $instance */
889+
return $instance->isDeferredService($service);
879890
}
880891
/**
881892
* Add an array of services to the application's deferred services.
@@ -889,15 +900,15 @@
889900
$instance->addDeferredServices($services);
890901
}
891902
/**
892-
* Determine if the given service is a deferred service.
903+
* Remove an array of services from the application's deferred services.
893904
*
894-
* @param string $service
895-
* @return bool
905+
* @param array $services
906+
* @return void
896907
* @static
897-
*/ public static function isDeferredService($service)
908+
*/ public static function removeDeferredServices($services)
898909
{
899910
/** @var \Illuminate\Foundation\Application $instance */
900-
return $instance->isDeferredService($service);
911+
$instance->removeDeferredServices($services);
901912
}
902913
/**
903914
* Configure the real-time facade namespace.
@@ -3645,6 +3656,17 @@
36453656
{
36463657
/** @var \Illuminate\Cache\CacheManager $instance */
36473658
return $instance->resolve($name);
3659+
}
3660+
/**
3661+
* Build a cache repository with the given configuration.
3662+
*
3663+
* @param array $config
3664+
* @return \Illuminate\Cache\Repository
3665+
* @static
3666+
*/ public static function build($config)
3667+
{
3668+
/** @var \Illuminate\Cache\CacheManager $instance */
3669+
return $instance->build($config);
36483670
}
36493671
/**
36503672
* Create a new cache repository with the given implementation.
@@ -4874,6 +4896,18 @@
48744896
{
48754897
/** @var \Illuminate\Log\Context\Repository $instance */
48764898
return $instance->push($key, ...$values);
4899+
}
4900+
/**
4901+
* Pop the latest value from the key's stack.
4902+
*
4903+
* @param string $key
4904+
* @return mixed
4905+
* @throws \RuntimeException
4906+
* @static
4907+
*/ public static function pop($key)
4908+
{
4909+
/** @var \Illuminate\Log\Context\Repository $instance */
4910+
return $instance->pop($key);
48774911
}
48784912
/**
48794913
* Push the given hidden values onto the key's stack.
@@ -4887,6 +4921,18 @@
48874921
{
48884922
/** @var \Illuminate\Log\Context\Repository $instance */
48894923
return $instance->pushHidden($key, ...$values);
4924+
}
4925+
/**
4926+
* Pop the latest hidden value from the key's stack.
4927+
*
4928+
* @param string $key
4929+
* @return mixed
4930+
* @throws \RuntimeException
4931+
* @static
4932+
*/ public static function popHidden($key)
4933+
{
4934+
/** @var \Illuminate\Log\Context\Repository $instance */
4935+
return $instance->popHidden($key);
48904936
}
48914937
/**
48924938
* Determine if the given value is in the given stack.
@@ -5534,6 +5580,17 @@
55345580
{
55355581
/** @var \Illuminate\Database\DatabaseManager $instance */
55365582
return $instance->connection($name);
5583+
}
5584+
/**
5585+
* Build a database connection instance from the given configuration.
5586+
*
5587+
* @param array $config
5588+
* @return \Illuminate\Database\MySqlConnection
5589+
* @static
5590+
*/ public static function build($config)
5591+
{
5592+
/** @var \Illuminate\Database\DatabaseManager $instance */
5593+
return $instance->build($config);
55375594
}
55385595
/**
55395596
* Get a database connection instance from the given configuration.
@@ -6613,11 +6670,14 @@
66136670
return \Illuminate\Database\MySqlConnection::getResolver($driver);
66146671
}
66156672
/**
6616-
* Execute a Closure within a transaction.
6673+
*
66176674
*
6618-
* @param \Closure $callback
6675+
* @template TReturn of mixed
6676+
*
6677+
* Execute a Closure within a transaction.
6678+
* @param (\Closure(static): TReturn) $callback
66196679
* @param int $attempts
6620-
* @return mixed
6680+
* @return \Illuminate\Database\TReturn
66216681
* @throws \Throwable
66226682
* @static
66236683
*/ public static function transaction($callback, $attempts = 1)
@@ -9123,7 +9183,7 @@
91239183
* @method static \Illuminate\Mail\SentMessage|null html(string $html, mixed $callback)
91249184
* @method static \Illuminate\Mail\SentMessage|null plain(string $view, array $data, mixed $callback)
91259185
* @method static string render(string|array $view, array $data = [])
9126-
* @method static mixed onQueue(string $queue, \Illuminate\Contracts\Mail\Mailable $view)
9186+
* @method static mixed onQueue(\BackedEnum|string|null $queue, \Illuminate\Contracts\Mail\Mailable $view)
91279187
* @method static mixed queueOn(string $queue, \Illuminate\Contracts\Mail\Mailable $view)
91289188
* @method static mixed laterOn(string $queue, \DateTimeInterface|\DateInterval|int $delay, \Illuminate\Contracts\Mail\Mailable $view)
91299189
* @method static \Symfony\Component\Mailer\Transport\TransportInterface getSymfonyTransport()
@@ -9158,6 +9218,17 @@
91589218
{
91599219
/** @var \Illuminate\Mail\MailManager $instance */
91609220
return $instance->driver($driver);
9221+
}
9222+
/**
9223+
* Build a new mailer instance.
9224+
*
9225+
* @param array $config
9226+
* @return \Illuminate\Mail\Mailer
9227+
* @static
9228+
*/ public static function build($config)
9229+
{
9230+
/** @var \Illuminate\Mail\MailManager $instance */
9231+
return $instance->build($config);
91619232
}
91629233
/**
91639234
* Create a new transport instance.
@@ -16941,6 +17012,17 @@
1694117012
{
1694217013
/** @var \Illuminate\Routing\UrlGenerator $instance */
1694317014
$instance->forceScheme($scheme);
17015+
}
17016+
/**
17017+
* Force the use of the HTTPS scheme for all generated URLs.
17018+
*
17019+
* @param bool $force
17020+
* @return void
17021+
* @static
17022+
*/ public static function forceHttps($force = true)
17023+
{
17024+
/** @var \Illuminate\Routing\UrlGenerator $instance */
17025+
$instance->forceHttps($force);
1694417026
}
1694517027
/**
1694617028
* Set the forced root URL.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"awcodes/filament-versions": "^2.0.1",
1919
"chrisullyott/php-filesize": "^4.2.1",
2020
"dragonmantank/cron-expression": "^3.4.0",
21-
"filament/filament": "^3.2.123",
22-
"filament/spatie-laravel-settings-plugin": "^3.2.123",
21+
"filament/filament": "^3.2.124",
22+
"filament/spatie-laravel-settings-plugin": "^3.2.124",
2323
"geerlingguy/ping": "^1.2.1",
2424
"guzzlehttp/guzzle": "^7.9.2",
2525
"influxdata/influxdb-client-php": "^3.6",
2626
"laravel-notification-channels/telegram": "^5.0",
27-
"laravel/framework": "^11.30",
27+
"laravel/framework": "^11.31",
2828
"laravel/prompts": "^0.2.1",
2929
"laravel/sanctum": "^4.0.3",
3030
"laravel/tinker": "^2.10.0",
@@ -37,10 +37,10 @@
3737
},
3838
"require-dev": {
3939
"barryvdh/laravel-ide-helper": "^3.2.2",
40-
"fakerphp/faker": "^1.23.1",
40+
"fakerphp/faker": "^1.24.0",
4141
"laravel/pint": "^1.18.1",
42-
"laravel/sail": "^1.37.1",
43-
"laravel/telescope": "^5.2.4",
42+
"laravel/sail": "^1.38.0",
43+
"laravel/telescope": "^5.2.5",
4444
"mockery/mockery": "^1.6.12",
4545
"nunomaduro/collision": "^8.5.0",
4646
"phpunit/phpunit": "^11.4.3",

0 commit comments

Comments
 (0)