Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
141 changes: 123 additions & 18 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.28.0.
* Generated for Laravel 10.31.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -435,6 +435,18 @@ public static function runningInConsole()
{
/** @var \Illuminate\Foundation\Application $instance */
return $instance->runningInConsole();
}
/**
* Determine if the application is running any of the given console commands.
*
* @param string|array $commands
* @return bool
* @static
*/
public static function runningConsoleCommand(...$commands)
{
/** @var \Illuminate\Foundation\Application $instance */
return $instance->runningConsoleCommand(...$commands);
}
/**
* Determine if the application is running unit tests.
Expand Down Expand Up @@ -5525,6 +5537,18 @@ public static function pretend($callback)
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\MySqlConnection $instance */
return $instance->pretend($callback);
}
/**
* Execute the given callback without "pretending".
*
* @param \Closure $callback
* @return mixed
* @static
*/
public static function withoutPretending($callback)
{ //Method inherited from \Illuminate\Database\Connection
/** @var \Illuminate\Database\MySqlConnection $instance */
return $instance->withoutPretending($callback);
}
/**
* Bind values to their parameters in the given statement.
Expand Down Expand Up @@ -6452,6 +6476,18 @@ public static function setQueueResolver($resolver)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->setQueueResolver($resolver);
}
/**
* Set the database transaction manager resolver implementation.
*
* @param callable $resolver
* @return \Illuminate\Events\Dispatcher
* @static
*/
public static function setTransactionManagerResolver($resolver)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->setTransactionManagerResolver($resolver);
}
/**
* Gets the raw, unprepared listeners.
Expand Down Expand Up @@ -14536,16 +14572,16 @@ public static function hasTable($table)
return $instance->hasTable($table);
}
/**
* Get the column listing for a given table.
* Get the columns for a given table.
*
* @param string $table
* @return array
* @static
*/
public static function getColumnListing($table)
public static function getColumns($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnListing($table);
return $instance->getColumns($table);
}
/**
* Drop all tables from the database.
Expand Down Expand Up @@ -14704,13 +14740,26 @@ public static function whenTableDoesntHaveColumn($table, $column, $callback)
*
* @param string $table
* @param string $column
* @param bool $fullDefinition
* @return string
* @static
*/
public static function getColumnType($table, $column)
public static function getColumnType($table, $column, $fullDefinition = false)
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnType($table, $column, $fullDefinition);
}
/**
* Get the column listing for a given table.
*
* @param string $table
* @return array
* @static
*/
public static function getColumnListing($table)
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnType($table, $column);
return $instance->getColumnListing($table);
}
/**
* Modify a table on the schema.
Expand Down Expand Up @@ -14898,6 +14947,28 @@ public static function blockDriver()
{
/** @var \Illuminate\Session\SessionManager $instance */
return $instance->blockDriver();
}
/**
* Get the maximum number of seconds the session lock should be held for.
*
* @return int
* @static
*/
public static function defaultRouteBlockLockSeconds()
{
/** @var \Illuminate\Session\SessionManager $instance */
return $instance->defaultRouteBlockLockSeconds();
}
/**
* Get the maximum number of seconds to wait while attempting to acquire a route block session lock.
*
* @return int
* @static
*/
public static function defaultRouteBlockWaitSeconds()
{
/** @var \Illuminate\Session\SessionManager $instance */
return $instance->defaultRouteBlockWaitSeconds();
}
/**
* Get the session configuration.
Expand Down Expand Up @@ -19650,11 +19721,12 @@ class Relation {
* @param mixed $callback
* @param mixed $alias
* @param bool $disableExtraConditions
* @param string|null $morphable
* @static
*/
public static function performJoinForEloquentPowerJoins($builder, $joinType = 'leftJoin', $callback = null, $alias = null, $disableExtraConditions = false)
public static function performJoinForEloquentPowerJoins($builder, $joinType = 'leftJoin', $callback = null, $alias = null, $disableExtraConditions = false, $morphable = null)
{
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoins($builder, $joinType, $callback, $alias, $disableExtraConditions);
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoins($builder, $joinType, $callback, $alias, $disableExtraConditions, $morphable);
}
/**
*
Expand Down Expand Up @@ -19715,6 +19787,22 @@ public static function performJoinForEloquentPowerJoinsForMorphToMany($builder,
public static function performJoinForEloquentPowerJoinsForMorph($builder, $joinType, $callback = null, $alias = null, $disableExtraConditions = false)
{
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoinsForMorph($builder, $joinType, $callback, $alias, $disableExtraConditions);
}
/**
*
*
* @see \Kirschbaum\PowerJoins\Mixins\RelationshipsExtraMethods::performJoinForEloquentPowerJoinsForMorphTo()
* @param mixed $builder
* @param mixed $joinType
* @param mixed $callback
* @param mixed $alias
* @param bool $disableExtraConditions
* @param string|null $morphable
* @static
*/
public static function performJoinForEloquentPowerJoinsForMorphTo($builder, $joinType, $callback = null, $alias = null, $disableExtraConditions = false, $morphable = null)
{
return \Illuminate\Database\Eloquent\Relations\Relation::performJoinForEloquentPowerJoinsForMorphTo($builder, $joinType, $callback, $alias, $disableExtraConditions, $morphable);
}
/**
*
Expand Down Expand Up @@ -19753,11 +19841,12 @@ public static function performJoinForEloquentPowerJoinsForHasManyThrough($builde
* @param mixed $builder
* @param mixed $operator
* @param mixed $count
* @param string|null $morphable
* @static
*/
public static function performHavingForEloquentPowerJoins($builder, $operator, $count)
public static function performHavingForEloquentPowerJoins($builder, $operator, $count, $morphable = null)
{
return \Illuminate\Database\Eloquent\Relations\Relation::performHavingForEloquentPowerJoins($builder, $operator, $count);
return \Illuminate\Database\Eloquent\Relations\Relation::performHavingForEloquentPowerJoins($builder, $operator, $count, $morphable);
}
/**
*
Expand Down Expand Up @@ -20431,6 +20520,18 @@ public static function assertFormFieldIsVisible($fieldName, $formName = 'form')
public static function assertNotified($notification = null)
{
return \Livewire\Features\SupportTesting\Testable::assertNotified($notification);
}
/**
*
*
* @see \Filament\Notifications\Testing\TestsNotifications::assertNotNotified()
* @param \Filament\Notifications\Notification|string|null $notification
* @return static
* @static
*/
public static function assertNotNotified($notification = null)
{
return \Livewire\Features\SupportTesting\Testable::assertNotNotified($notification);
}
/**
*
Expand Down Expand Up @@ -21162,12 +21263,14 @@ public static function assertCanNotRenderTableColumn($name)
*
* @see \Filament\Tables\Testing\TestsColumns::assertTableColumnExists()
* @param string $name
* @param \Closure|null $checkColumnUsing
* @param mixed $record
* @return static
* @static
*/
public static function assertTableColumnExists($name)
public static function assertTableColumnExists($name, $checkColumnUsing = null, $record = null)
{
return \Livewire\Features\SupportTesting\Testable::assertTableColumnExists($name);
return \Livewire\Features\SupportTesting\Testable::assertTableColumnExists($name, $checkColumnUsing, $record);
}
/**
*
Expand Down Expand Up @@ -23394,11 +23497,12 @@ public static function newPowerJoinClause($parentQuery, $type, $table, $model =
* @param mixed $joinType
* @param mixed $useAlias
* @param bool $disableExtraConditions
* @param string|null $morphable
* @static
*/
public static function joinRelationship($relationName, $callback = null, $joinType = 'join', $useAlias = false, $disableExtraConditions = false)
public static function joinRelationship($relationName, $callback = null, $joinType = 'join', $useAlias = false, $disableExtraConditions = false, $morphable = null)
{
return \Illuminate\Database\Eloquent\Builder::joinRelationship($relationName, $callback, $joinType, $useAlias, $disableExtraConditions);
return \Illuminate\Database\Eloquent\Builder::joinRelationship($relationName, $callback, $joinType, $useAlias, $disableExtraConditions, $morphable);
}

/**
Expand Down Expand Up @@ -23701,13 +23805,14 @@ public static function orderByLeftPowerJoinsMax($sort, $direction = 'asc')
* @param mixed $operator
* @param mixed $count
* @param mixed $boolean
* @param mixed $callback
* @param \Closure|array|null $callback
* @param string|null $morphable
* @return static
* @static
*/
public static function powerJoinHas($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null)
public static function powerJoinHas($relation, $operator = '>=', $count = 1, $boolean = 'and', $callback = null, $morphable = null)
{
return \Illuminate\Database\Eloquent\Builder::powerJoinHas($relation, $operator, $count, $boolean, $callback);
return \Illuminate\Database\Eloquent\Builder::powerJoinHas($relation, $operator, $count, $boolean, $callback, $morphable);
}

/**
Expand All @@ -23718,7 +23823,7 @@ public static function powerJoinHas($relation, $operator = '>=', $count = 1, $bo
* @param mixed $operator
* @param mixed $count
* @param mixed $boolean
* @param \Closure|null $callback
* @param \Closure|array|null $callback
* @return static
* @static
*/
Expand Down
30 changes: 15 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,35 @@
"license": "MIT",
"require": {
"php": "^8.1",
"awcodes/filament-versions": "^2.0",
"awcodes/filament-versions": "^2.0.1",
"chrisullyott/php-filesize": "^4.2.1",
"doctrine/dbal": "^3.7.0",
"doctrine/dbal": "^3.7.1",
"dragonmantank/cron-expression": "^3.3.3",
"filament/filament": "^3.0.67",
"filament/spatie-laravel-settings-plugin": "^3.0.67",
"filament/filament": "^3.0.94",
"filament/spatie-laravel-settings-plugin": "^3.0.94",
"guzzlehttp/guzzle": "^7.8",
"influxdata/influxdb-client-php": "^3.4",
"laravel-notification-channels/telegram": "^4.0",
"laravel/framework": "^10.28",
"laravel/prompts": "^0.1.11",
"laravel/sanctum": "^3.3.1",
"laravel/framework": "^10.31",
"laravel/prompts": "^0.1.13",
"laravel/sanctum": "^3.3.2",
"laravel/tinker": "^2.8.2",
"livewire/livewire": "^3.0.5",
"maatwebsite/excel": "^3.1.48",
"livewire/livewire": "^3.1.0",
"maatwebsite/excel": "^3.1.50",
"maennchen/zipstream-php": "^2.4",
"spatie/laravel-settings": "^2.8.3",
"squirephp/timezones-en": "^3.4.2"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.13.2",
"laravel/sail": "^1.25.0",
"laravel/telescope": "^4.16.4",
"laravel/pint": "^1.13.6",
"laravel/sail": "^1.26.0",
"laravel/telescope": "^4.17.2",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^7.9.0",
"phpunit/phpunit": "^10.3.5",
"spatie/laravel-ignition": "^2.3"
"nunomaduro/collision": "^7.10.0",
"phpunit/phpunit": "^10.4.2",
"spatie/laravel-ignition": "^2.3.1"
},
"autoload": {
"files": [
Expand Down
Loading