Skip to content

Commit 0a94c55

Browse files
Laravel 10.33.0 Shift (alexjustesen#920)
Co-authored-by: Shift <[email protected]>
1 parent a59ca53 commit 0a94c55

File tree

7 files changed

+235
-198
lines changed

7 files changed

+235
-198
lines changed

_ide_helper.php

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* A helper file for Laravel, to provide autocomplete information to your IDE
7-
* Generated for Laravel 10.31.0.
7+
* Generated for Laravel 10.33.0.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -3518,6 +3518,18 @@ public static function assertDispatchedWithoutChain($command, $callback = null)
35183518
{
35193519
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
35203520
$instance->assertDispatchedWithoutChain($command, $callback);
3521+
}
3522+
/**
3523+
* Create a new assertion about a chained batch.
3524+
*
3525+
* @param \Closure $callback
3526+
* @return \Illuminate\Support\Testing\Fakes\ChainedBatchTruthTest
3527+
* @static
3528+
*/
3529+
public static function chainedBatch($callback)
3530+
{
3531+
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
3532+
return $instance->chainedBatch($callback);
35213533
}
35223534
/**
35233535
* Assert if a batch was dispatched based on a truth-test callback.
@@ -4345,6 +4357,18 @@ public static function restoreLock($name, $owner)
43454357
{
43464358
/** @var \Illuminate\Cache\DatabaseStore $instance */
43474359
return $instance->restoreLock($name, $owner);
4360+
}
4361+
/**
4362+
* Remove an item from the cache if it is expired.
4363+
*
4364+
* @param string $key
4365+
* @return bool
4366+
* @static
4367+
*/
4368+
public static function forgetIfExpired($key)
4369+
{
4370+
/** @var \Illuminate\Cache\DatabaseStore $instance */
4371+
return $instance->forgetIfExpired($key);
43484372
}
43494373
/**
43504374
* Remove all items from the cache.
@@ -8154,6 +8178,17 @@ public static function getDispatcher()
81548178
{
81558179
/** @var \Illuminate\Http\Client\Factory $instance */
81568180
return $instance->getDispatcher();
8181+
}
8182+
/**
8183+
* Get the array of global middleware.
8184+
*
8185+
* @return array
8186+
* @static
8187+
*/
8188+
public static function getGlobalMiddleware()
8189+
{
8190+
/** @var \Illuminate\Http\Client\Factory $instance */
8191+
return $instance->getGlobalMiddleware();
81578192
}
81588193
/**
81598194
* Register a custom macro.
@@ -8307,6 +8342,18 @@ public static function load($namespace, $group, $locale)
83078342
{
83088343
/** @var \Illuminate\Translation\Translator $instance */
83098344
$instance->load($namespace, $group, $locale);
8345+
}
8346+
/**
8347+
* Register a callback that is responsible for handling missing translation keys.
8348+
*
8349+
* @param callable|null $callback
8350+
* @return static
8351+
* @static
8352+
*/
8353+
public static function handleMissingKeysUsing($callback)
8354+
{
8355+
/** @var \Illuminate\Translation\Translator $instance */
8356+
return $instance->handleMissingKeysUsing($callback);
83108357
}
83118358
/**
83128359
* Add a new namespace to the loader.

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@
1111
"php": "^8.1",
1212
"awcodes/filament-versions": "^2.0.1",
1313
"chrisullyott/php-filesize": "^4.2.1",
14-
"doctrine/dbal": "^3.7.1",
14+
"doctrine/dbal": "^3.7.2",
1515
"dragonmantank/cron-expression": "^3.3.3",
16-
"filament/filament": "^3.0.94",
17-
"filament/spatie-laravel-settings-plugin": "^3.0.94",
16+
"filament/filament": "^3.0.101",
17+
"filament/spatie-laravel-settings-plugin": "^3.0.101",
1818
"guzzlehttp/guzzle": "^7.8",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.31",
21+
"laravel/framework": "^10.33",
2222
"laravel/prompts": "^0.1.13",
2323
"laravel/sanctum": "^3.3.2",
2424
"laravel/tinker": "^2.8.2",
25-
"livewire/livewire": "^3.1.0",
25+
"livewire/livewire": "^3.2.1",
2626
"maatwebsite/excel": "^3.1.50",
2727
"maennchen/zipstream-php": "^2.4",
2828
"spatie/laravel-settings": "^2.8.3",
29-
"squirephp/timezones-en": "^3.4.2"
29+
"squirephp/timezones-en": "^3.4.4"
3030
},
3131
"require-dev": {
3232
"barryvdh/laravel-ide-helper": "^2.13",
3333
"fakerphp/faker": "^1.23.0",
3434
"laravel/pint": "^1.13.6",
35-
"laravel/sail": "^1.26.0",
35+
"laravel/sail": "^1.26.1",
3636
"laravel/telescope": "^4.17.2",
3737
"mockery/mockery": "^1.6.6",
3838
"nunomaduro/collision": "^7.10.0",

0 commit comments

Comments
 (0)