Skip to content

Commit 190c96b

Browse files
Laravel 10.31.0 Shift (#890)
Co-authored-by: Shift <[email protected]>
1 parent d9dacd8 commit 190c96b

File tree

12 files changed

+458
-343
lines changed

12 files changed

+458
-343
lines changed

_ide_helper.php

Lines changed: 123 additions & 18 deletions
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.28.0.
7+
* Generated for Laravel 10.31.0.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -435,6 +435,18 @@ public static function runningInConsole()
435435
{
436436
/** @var \Illuminate\Foundation\Application $instance */
437437
return $instance->runningInConsole();
438+
}
439+
/**
440+
* Determine if the application is running any of the given console commands.
441+
*
442+
* @param string|array $commands
443+
* @return bool
444+
* @static
445+
*/
446+
public static function runningConsoleCommand(...$commands)
447+
{
448+
/** @var \Illuminate\Foundation\Application $instance */
449+
return $instance->runningConsoleCommand(...$commands);
438450
}
439451
/**
440452
* Determine if the application is running unit tests.
@@ -5525,6 +5537,18 @@ public static function pretend($callback)
55255537
{ //Method inherited from \Illuminate\Database\Connection
55265538
/** @var \Illuminate\Database\MySqlConnection $instance */
55275539
return $instance->pretend($callback);
5540+
}
5541+
/**
5542+
* Execute the given callback without "pretending".
5543+
*
5544+
* @param \Closure $callback
5545+
* @return mixed
5546+
* @static
5547+
*/
5548+
public static function withoutPretending($callback)
5549+
{ //Method inherited from \Illuminate\Database\Connection
5550+
/** @var \Illuminate\Database\MySqlConnection $instance */
5551+
return $instance->withoutPretending($callback);
55285552
}
55295553
/**
55305554
* Bind values to their parameters in the given statement.
@@ -6452,6 +6476,18 @@ public static function setQueueResolver($resolver)
64526476
{
64536477
/** @var \Illuminate\Events\Dispatcher $instance */
64546478
return $instance->setQueueResolver($resolver);
6479+
}
6480+
/**
6481+
* Set the database transaction manager resolver implementation.
6482+
*
6483+
* @param callable $resolver
6484+
* @return \Illuminate\Events\Dispatcher
6485+
* @static
6486+
*/
6487+
public static function setTransactionManagerResolver($resolver)
6488+
{
6489+
/** @var \Illuminate\Events\Dispatcher $instance */
6490+
return $instance->setTransactionManagerResolver($resolver);
64556491
}
64566492
/**
64576493
* Gets the raw, unprepared listeners.
@@ -14536,16 +14572,16 @@ public static function hasTable($table)
1453614572
return $instance->hasTable($table);
1453714573
}
1453814574
/**
14539-
* Get the column listing for a given table.
14575+
* Get the columns for a given table.
1454014576
*
1454114577
* @param string $table
1454214578
* @return array
1454314579
* @static
1454414580
*/
14545-
public static function getColumnListing($table)
14581+
public static function getColumns($table)
1454614582
{
1454714583
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14548-
return $instance->getColumnListing($table);
14584+
return $instance->getColumns($table);
1454914585
}
1455014586
/**
1455114587
* Drop all tables from the database.
@@ -14704,13 +14740,26 @@ public static function whenTableDoesntHaveColumn($table, $column, $callback)
1470414740
*
1470514741
* @param string $table
1470614742
* @param string $column
14743+
* @param bool $fullDefinition
1470714744
* @return string
1470814745
* @static
1470914746
*/
14710-
public static function getColumnType($table, $column)
14747+
public static function getColumnType($table, $column, $fullDefinition = false)
14748+
{ //Method inherited from \Illuminate\Database\Schema\Builder
14749+
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14750+
return $instance->getColumnType($table, $column, $fullDefinition);
14751+
}
14752+
/**
14753+
* Get the column listing for a given table.
14754+
*
14755+
* @param string $table
14756+
* @return array
14757+
* @static
14758+
*/
14759+
public static function getColumnListing($table)
1471114760
{ //Method inherited from \Illuminate\Database\Schema\Builder
1471214761
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
14713-
return $instance->getColumnType($table, $column);
14762+
return $instance->getColumnListing($table);
1471414763
}
1471514764
/**
1471614765
* Modify a table on the schema.
@@ -14898,6 +14947,28 @@ public static function blockDriver()
1489814947
{
1489914948
/** @var \Illuminate\Session\SessionManager $instance */
1490014949
return $instance->blockDriver();
14950+
}
14951+
/**
14952+
* Get the maximum number of seconds the session lock should be held for.
14953+
*
14954+
* @return int
14955+
* @static
14956+
*/
14957+
public static function defaultRouteBlockLockSeconds()
14958+
{
14959+
/** @var \Illuminate\Session\SessionManager $instance */
14960+
return $instance->defaultRouteBlockLockSeconds();
14961+
}
14962+
/**
14963+
* Get the maximum number of seconds to wait while attempting to acquire a route block session lock.
14964+
*
14965+
* @return int
14966+
* @static
14967+
*/
14968+
public static function defaultRouteBlockWaitSeconds()
14969+
{
14970+
/** @var \Illuminate\Session\SessionManager $instance */
14971+
return $instance->defaultRouteBlockWaitSeconds();
1490114972
}
1490214973
/**
1490314974
* Get the session configuration.
@@ -19650,11 +19721,12 @@ class Relation {
1965019721
* @param mixed $callback
1965119722
* @param mixed $alias
1965219723
* @param bool $disableExtraConditions
19724+
* @param string|null $morphable
1965319725
* @static
1965419726
*/
19655-
public static function performJoinForEloquentPowerJoins($builder, $joinType = 'leftJoin', $callback = null, $alias = null, $disableExtraConditions = false)
19727+
public static function performJoinForEloquentPowerJoins($builder, $joinType = 'leftJoin', $callback = null, $alias = null, $disableExtraConditions = false, $morphable = null)
1965619728
{
19657-
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoins($builder, $joinType, $callback, $alias, $disableExtraConditions);
19729+
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoins($builder, $joinType, $callback, $alias, $disableExtraConditions, $morphable);
1965819730
}
1965919731
/**
1966019732
*
@@ -19715,6 +19787,22 @@ public static function performJoinForEloquentPowerJoinsForMorphToMany($builder,
1971519787
public static function performJoinForEloquentPowerJoinsForMorph($builder, $joinType, $callback = null, $alias = null, $disableExtraConditions = false)
1971619788
{
1971719789
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoinsForMorph($builder, $joinType, $callback, $alias, $disableExtraConditions);
19790+
}
19791+
/**
19792+
*
19793+
*
19794+
* @see \Kirschbaum\PowerJoins\Mixins\RelationshipsExtraMethods::performJoinForEloquentPowerJoinsForMorphTo()
19795+
* @param mixed $builder
19796+
* @param mixed $joinType
19797+
* @param mixed $callback
19798+
* @param mixed $alias
19799+
* @param bool $disableExtraConditions
19800+
* @param string|null $morphable
19801+
* @static
19802+
*/
19803+
public static function performJoinForEloquentPowerJoinsForMorphTo($builder, $joinType, $callback = null, $alias = null, $disableExtraConditions = false, $morphable = null)
19804+
{
19805+
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoinsForMorphTo($builder, $joinType, $callback, $alias, $disableExtraConditions, $morphable);
1971819806
}
1971919807
/**
1972019808
*
@@ -19753,11 +19841,12 @@ public static function performJoinForEloquentPowerJoinsForHasManyThrough($builde
1975319841
* @param mixed $builder
1975419842
* @param mixed $operator
1975519843
* @param mixed $count
19844+
* @param string|null $morphable
1975619845
* @static
1975719846
*/
19758-
public static function performHavingForEloquentPowerJoins($builder, $operator, $count)
19847+
public static function performHavingForEloquentPowerJoins($builder, $operator, $count, $morphable = null)
1975919848
{
19760-
return \Illuminate\Database\Eloquent\Relations\Relation::performHavingForEloquentPowerJoins($builder, $operator, $count);
19849+
return \Illuminate\Database\Eloquent\Relations\Relation::performHavingForEloquentPowerJoins($builder, $operator, $count, $morphable);
1976119850
}
1976219851
/**
1976319852
*
@@ -20431,6 +20520,18 @@ public static function assertFormFieldIsVisible($fieldName, $formName = 'form')
2043120520
public static function assertNotified($notification = null)
2043220521
{
2043320522
return \Livewire\Features\SupportTesting\Testable::assertNotified($notification);
20523+
}
20524+
/**
20525+
*
20526+
*
20527+
* @see \Filament\Notifications\Testing\TestsNotifications::assertNotNotified()
20528+
* @param \Filament\Notifications\Notification|string|null $notification
20529+
* @return static
20530+
* @static
20531+
*/
20532+
public static function assertNotNotified($notification = null)
20533+
{
20534+
return \Livewire\Features\SupportTesting\Testable::assertNotNotified($notification);
2043420535
}
2043520536
/**
2043620537
*
@@ -21162,12 +21263,14 @@ public static function assertCanNotRenderTableColumn($name)
2116221263
*
2116321264
* @see \Filament\Tables\Testing\TestsColumns::assertTableColumnExists()
2116421265
* @param string $name
21266+
* @param \Closure|null $checkColumnUsing
21267+
* @param mixed $record
2116521268
* @return static
2116621269
* @static
2116721270
*/
21168-
public static function assertTableColumnExists($name)
21271+
public static function assertTableColumnExists($name, $checkColumnUsing = null, $record = null)
2116921272
{
21170-
return \Livewire\Features\SupportTesting\Testable::assertTableColumnExists($name);
21273+
return \Livewire\Features\SupportTesting\Testable::assertTableColumnExists($name, $checkColumnUsing, $record);
2117121274
}
2117221275
/**
2117321276
*
@@ -23394,11 +23497,12 @@ public static function newPowerJoinClause($parentQuery, $type, $table, $model =
2339423497
* @param mixed $joinType
2339523498
* @param mixed $useAlias
2339623499
* @param bool $disableExtraConditions
23500+
* @param string|null $morphable
2339723501
* @static
2339823502
*/
23399-
public static function joinRelationship($relationName, $callback = null, $joinType = 'join', $useAlias = false, $disableExtraConditions = false)
23503+
public static function joinRelationship($relationName, $callback = null, $joinType = 'join', $useAlias = false, $disableExtraConditions = false, $morphable = null)
2340023504
{
23401-
return \Illuminate\Database\Eloquent\Builder::joinRelationship($relationName, $callback, $joinType, $useAlias, $disableExtraConditions);
23505+
return \Illuminate\Database\Eloquent\Builder::joinRelationship($relationName, $callback, $joinType, $useAlias, $disableExtraConditions, $morphable);
2340223506
}
2340323507

2340423508
/**
@@ -23701,13 +23805,14 @@ public static function orderByLeftPowerJoinsMax($sort, $direction = 'asc')
2370123805
* @param mixed $operator
2370223806
* @param mixed $count
2370323807
* @param mixed $boolean
23704-
* @param mixed $callback
23808+
* @param \Closure|array|null $callback
23809+
* @param string|null $morphable
2370523810
* @return static
2370623811
* @static
2370723812
*/
23708-
public static function powerJoinHas($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
23813+
public static function powerJoinHas($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null, $morphable = null)
2370923814
{
23710-
return \Illuminate\Database\Eloquent\Builder::powerJoinHas($relation, $operator, $count, $boolean, $callback);
23815+
return \Illuminate\Database\Eloquent\Builder::powerJoinHas($relation, $operator, $count, $boolean, $callback, $morphable);
2371123816
}
2371223817

2371323818
/**
@@ -23718,7 +23823,7 @@ public static function powerJoinHas($relation, $operator = '>=', $count = 1, $bo
2371823823
* @param mixed $operator
2371923824
* @param mixed $count
2372023825
* @param mixed $boolean
23721-
* @param \Closure|null $callback
23826+
* @param \Closure|array|null $callback
2372223827
* @return static
2372323828
* @static
2372423829
*/

composer.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,35 @@
99
"license": "MIT",
1010
"require": {
1111
"php": "^8.1",
12-
"awcodes/filament-versions": "^2.0",
12+
"awcodes/filament-versions": "^2.0.1",
1313
"chrisullyott/php-filesize": "^4.2.1",
14-
"doctrine/dbal": "^3.7.0",
14+
"doctrine/dbal": "^3.7.1",
1515
"dragonmantank/cron-expression": "^3.3.3",
16-
"filament/filament": "^3.0.67",
17-
"filament/spatie-laravel-settings-plugin": "^3.0.67",
16+
"filament/filament": "^3.0.94",
17+
"filament/spatie-laravel-settings-plugin": "^3.0.94",
1818
"guzzlehttp/guzzle": "^7.8",
1919
"influxdata/influxdb-client-php": "^3.4",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.28",
22-
"laravel/prompts": "^0.1.11",
23-
"laravel/sanctum": "^3.3.1",
21+
"laravel/framework": "^10.31",
22+
"laravel/prompts": "^0.1.13",
23+
"laravel/sanctum": "^3.3.2",
2424
"laravel/tinker": "^2.8.2",
25-
"livewire/livewire": "^3.0.5",
26-
"maatwebsite/excel": "^3.1.48",
25+
"livewire/livewire": "^3.1.0",
26+
"maatwebsite/excel": "^3.1.50",
2727
"maennchen/zipstream-php": "^2.4",
2828
"spatie/laravel-settings": "^2.8.3",
2929
"squirephp/timezones-en": "^3.4.2"
3030
},
3131
"require-dev": {
3232
"barryvdh/laravel-ide-helper": "^2.13",
3333
"fakerphp/faker": "^1.23.0",
34-
"laravel/pint": "^1.13.2",
35-
"laravel/sail": "^1.25.0",
36-
"laravel/telescope": "^4.16.4",
34+
"laravel/pint": "^1.13.6",
35+
"laravel/sail": "^1.26.0",
36+
"laravel/telescope": "^4.17.2",
3737
"mockery/mockery": "^1.6.6",
38-
"nunomaduro/collision": "^7.9.0",
39-
"phpunit/phpunit": "^10.3.5",
40-
"spatie/laravel-ignition": "^2.3"
38+
"nunomaduro/collision": "^7.10.0",
39+
"phpunit/phpunit": "^10.4.2",
40+
"spatie/laravel-ignition": "^2.3.1"
4141
},
4242
"autoload": {
4343
"files": [

0 commit comments

Comments
 (0)