Update
This commit is contained in:
502
_ide_helper.php
502
_ide_helper.php
@@ -23885,6 +23885,157 @@ public static function setSiteName($name)
|
||||
}
|
||||
}
|
||||
|
||||
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 {
|
||||
/**
|
||||
*
|
||||
@@ -24038,6 +24189,356 @@ public static function inertiaPage()
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Database\Schema\Grammars {
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class PostgresGrammar {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeVector($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\PostgresGrammar::typeVector($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeHalfvec($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\PostgresGrammar::typeHalfvec($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeBit($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\PostgresGrammar::typeBit($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeSparsevec($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\PostgresGrammar::typeSparsevec($column);
|
||||
}
|
||||
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Grammar {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeVector($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\Grammar::typeVector($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeHalfvec($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\Grammar::typeHalfvec($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeBit($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\Grammar::typeBit($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeSparsevec($column)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Grammars\Grammar::typeSparsevec($column);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Database {
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Grammar {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeVector($column)
|
||||
{
|
||||
return \Illuminate\Database\Grammar::typeVector($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeHalfvec($column)
|
||||
{
|
||||
return \Illuminate\Database\Grammar::typeHalfvec($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeBit($column)
|
||||
{
|
||||
return \Illuminate\Database\Grammar::typeBit($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeSparsevec($column)
|
||||
{
|
||||
return \Illuminate\Database\Grammar::typeSparsevec($column);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Database\Schema {
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Blueprint {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param string $column
|
||||
* @param mixed|null $dimensions
|
||||
* @return \Illuminate\Database\Schema\ColumnDefinition
|
||||
* @static
|
||||
*/
|
||||
public static function halfvec($column, $dimensions = null)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Blueprint::halfvec($column, $dimensions);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param string $column
|
||||
* @param mixed|null $length
|
||||
* @return \Illuminate\Database\Schema\ColumnDefinition
|
||||
* @static
|
||||
*/
|
||||
public static function bit($column, $length = null)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Blueprint::bit($column, $length);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param string $column
|
||||
* @param mixed|null $dimensions
|
||||
* @return \Illuminate\Database\Schema\ColumnDefinition
|
||||
* @static
|
||||
*/
|
||||
public static function sparsevec($column, $dimensions = null)
|
||||
{
|
||||
return \Illuminate\Database\Schema\Blueprint::sparsevec($column, $dimensions);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Database\Query\Grammars {
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class PostgresGrammar {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeVector($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\PostgresGrammar::typeVector($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeHalfvec($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\PostgresGrammar::typeHalfvec($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeBit($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\PostgresGrammar::typeBit($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeSparsevec($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\PostgresGrammar::typeSparsevec($column);
|
||||
}
|
||||
|
||||
}
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Grammar {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeVector($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\Grammar::typeVector($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeHalfvec($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\Grammar::typeHalfvec($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeBit($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\Grammar::typeBit($column);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Pgvector\Laravel\Schema::register()
|
||||
* @param \Illuminate\Database\Schema\ColumnDefinition $column
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function typeSparsevec($column)
|
||||
{
|
||||
return \Illuminate\Database\Query\Grammars\Grammar::typeSparsevec($column);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
namespace {
|
||||
class App extends \Illuminate\Support\Facades\App {}
|
||||
@@ -28822,6 +29323,7 @@ class SEOMeta extends \Artesaos\SEOTools\Facades\SEOMeta {}
|
||||
class Twitter extends \Artesaos\SEOTools\Facades\TwitterCard {}
|
||||
class OpenGraph extends \Artesaos\SEOTools\Facades\OpenGraph {}
|
||||
class Horizon extends \Laravel\Horizon\Horizon {}
|
||||
class Hashids extends \Vinkla\Hashids\Facades\Hashids {}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user