Update
This commit is contained in:
148
_ide_helper.php
148
_ide_helper.php
@@ -24337,6 +24337,103 @@ public static function inertiaPage()
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Database\Schema {
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Blueprint {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Kalnoy\Nestedset\NestedSetServiceProvider::register()
|
||||
* @static
|
||||
*/
|
||||
public static function nestedSet()
|
||||
{
|
||||
return \Illuminate\Database\Schema\Blueprint::nestedSet();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Kalnoy\Nestedset\NestedSetServiceProvider::register()
|
||||
* @static
|
||||
*/
|
||||
public static function dropNestedSet()
|
||||
{
|
||||
return \Illuminate\Database\Schema\Blueprint::dropNestedSet();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @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\Eloquent\Factories {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @template TModel of \Illuminate\Database\Eloquent\Model
|
||||
* @method $this trashed()
|
||||
*/
|
||||
class Factory {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @see \Spatie\Translatable\TranslatableServiceProvider::packageRegistered()
|
||||
* @param array|string $locales
|
||||
* @param mixed|null $value
|
||||
* @static
|
||||
*/
|
||||
public static function translations($locales, $value)
|
||||
{
|
||||
return \Illuminate\Database\Eloquent\Factories\Factory::translations($locales, $value);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
namespace Illuminate\Database\Schema\Grammars {
|
||||
/**
|
||||
*
|
||||
@@ -24517,57 +24614,6 @@ public static function 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 {
|
||||
/**
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user