fix: update dependencies

This commit is contained in:
Rico van Zelst
2023-11-02 11:24:59 +01:00
parent 87280627ee
commit 6904eb4ca4
2 changed files with 231 additions and 158 deletions

View File

@@ -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.30.1.
*
* This file should not be included in your code, only analyzed by your IDE!
*
@@ -435,6 +435,18 @@
{
/** @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.
@@ -5548,6 +5560,18 @@
{ //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.
@@ -6475,6 +6499,18 @@
{
/** @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.
@@ -14482,16 +14518,16 @@
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.
@@ -14650,13 +14686,26 @@
*
* @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);
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->getColumnListing($table);
}
/**
* Modify a table on the schema.
@@ -14844,6 +14893,28 @@
{
/** @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.