mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-21 20:24:06 +00:00
Laravel 13 upgrade, updates and fixes
This commit is contained in:
153
_ide_helper.php
153
_ide_helper.php
@@ -24310,157 +24310,6 @@ namespace Spatie\SignalAwareCommand\Facades {
|
||||
}
|
||||
}
|
||||
|
||||
namespace Vinkla\Hashids\Facades {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @method static string encode(mixed ...$numbers)
|
||||
* @method static array decode(string $hash)
|
||||
* @method static string encodeHex(string $str)
|
||||
* @method static string decodeHex(string $hash)
|
||||
*/
|
||||
class Hashids {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function getFactory()
|
||||
{
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
return $instance->getFactory();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a connection instance.
|
||||
*
|
||||
* @param string|null $name
|
||||
* @throws \InvalidArgumentException
|
||||
* @return object
|
||||
* @static
|
||||
*/
|
||||
public static function connection($name = null)
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
return $instance->connection($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reconnect to the given connection.
|
||||
*
|
||||
* @param string|null $name
|
||||
* @throws \InvalidArgumentException
|
||||
* @return object
|
||||
* @static
|
||||
*/
|
||||
public static function reconnect($name = null)
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
return $instance->reconnect($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Disconnect from the given connection.
|
||||
*
|
||||
* @param string|null $name
|
||||
* @return void
|
||||
* @static
|
||||
*/
|
||||
public static function disconnect($name = null)
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
$instance->disconnect($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the configuration for a connection.
|
||||
*
|
||||
* @param string|null $name
|
||||
* @throws \InvalidArgumentException
|
||||
* @return array
|
||||
* @static
|
||||
*/
|
||||
public static function getConnectionConfig($name = null)
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
return $instance->getConnectionConfig($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the default connection name.
|
||||
*
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function getDefaultConnection()
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
return $instance->getDefaultConnection();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the default connection name.
|
||||
*
|
||||
* @param string $name
|
||||
* @return void
|
||||
* @static
|
||||
*/
|
||||
public static function setDefaultConnection($name)
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
$instance->setDefaultConnection($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register an extension connection resolver.
|
||||
*
|
||||
* @param string $name
|
||||
* @param callable $resolver
|
||||
* @return void
|
||||
* @static
|
||||
*/
|
||||
public static function extend($name, $resolver)
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
$instance->extend($name, $resolver);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return all of the created connections.
|
||||
*
|
||||
* @return array<string,object>
|
||||
* @static
|
||||
*/
|
||||
public static function getConnections()
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
return $instance->getConnections();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the config instance.
|
||||
*
|
||||
* @return \Illuminate\Contracts\Config\Repository
|
||||
* @static
|
||||
*/
|
||||
public static function getConfig()
|
||||
{
|
||||
//Method inherited from \GrahamCampbell\Manager\AbstractManager
|
||||
/** @var \Vinkla\Hashids\HashidsManager $instance */
|
||||
return $instance->getConfig();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Http {
|
||||
/**
|
||||
*
|
||||
@@ -28936,7 +28785,7 @@ namespace {
|
||||
class Bouncer extends \Silber\Bouncer\BouncerFacade {}
|
||||
class Flare extends \Spatie\LaravelIgnition\Facades\Flare {}
|
||||
class Signal extends \Spatie\SignalAwareCommand\Facades\Signal {}
|
||||
class Hashids extends \Vinkla\Hashids\Facades\Hashids {}
|
||||
class Hashids extends \App\Facades\Hashids {}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user