Skip to content

Commit ee67f66

Browse files
Laravel 10.39.0 Shift (alexjustesen#1022)
Co-authored-by: Shift <[email protected]>
1 parent 08fda86 commit ee67f66

File tree

5 files changed

+110
-98
lines changed

5 files changed

+110
-98
lines changed

_ide_helper.php

Lines changed: 13 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.38.2.
7+
* Generated for Laravel 10.39.0.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -10605,6 +10605,18 @@ public static function getDatabase()
1060510605
{
1060610606
/** @var \Illuminate\Queue\DatabaseQueue $instance */
1060710607
return $instance->getDatabase();
10608+
}
10609+
/**
10610+
* Get the maximum number of attempts for an object-based queue handler.
10611+
*
10612+
* @param mixed $job
10613+
* @return mixed
10614+
* @static
10615+
*/
10616+
public static function getJobTries($job)
10617+
{ //Method inherited from \Illuminate\Queue\Queue
10618+
/** @var \Illuminate\Queue\DatabaseQueue $instance */
10619+
return $instance->getJobTries($job);
1060810620
}
1060910621
/**
1061010622
* Get the backoff for an object-based queue handler.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"chrisullyott/php-filesize": "^4.2.1",
1414
"doctrine/dbal": "^3.7.2",
1515
"dragonmantank/cron-expression": "^3.3.3",
16-
"filament/filament": "^3.1.27",
17-
"filament/spatie-laravel-settings-plugin": "^3.1.27",
16+
"filament/filament": "^3.1.29",
17+
"filament/spatie-laravel-settings-plugin": "^3.1.29",
1818
"guzzlehttp/guzzle": "^7.8.1",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.38.2",
22-
"laravel/prompts": "^0.1.13",
23-
"laravel/sanctum": "^3.3.2",
21+
"laravel/framework": "^10.39",
22+
"laravel/prompts": "^0.1.14",
23+
"laravel/sanctum": "^3.3.3",
2424
"laravel/tinker": "^2.8.2",
2525
"livewire/livewire": "^3.3.3",
2626
"maatwebsite/excel": "^3.1.51",
@@ -35,7 +35,7 @@
3535
"laravel/telescope": "^4.17.3",
3636
"mockery/mockery": "^1.6.7",
3737
"nunomaduro/collision": "^7.10.0",
38-
"phpunit/phpunit": "^10.5.3",
38+
"phpunit/phpunit": "^10.5.5",
3939
"spatie/laravel-ignition": "^2.3.3"
4040
},
4141
"autoload": {

0 commit comments

Comments
 (0)