Schema
class Schema extends Facade
Properties
| static protected | $app | The application instance being facaded. |
from Facade |
| static protected array | $resolvedInstance | The resolved object instances. |
from Facade |
| static protected bool | $cached | Indicates if the resolved facade should be cached. |
Methods
Get the registered name of the component.
Resolve the facade root instance from the container.
Clear a resolved facade instance.
Handle dynamic, static calls to the object.
Get a schema builder instance for a connection.
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
Details
in
Facade at line 55
static void
resolved(Closure $callback)
Run a Closure when the facade has been resolved.
Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.
in
Facade at line 71
static
spy()
Convert the facade into a Mockery spy.
in
Facade at line 89
static
partialMock()
Initiate a partial mock on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
in
Facade at line 105
static
shouldReceive()
Initiate a mock expectation on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
in
Facade at line 121
static
expects()
Initiate a mock expectation on the facade.
Tests only. Swaps the resolved facade instance for the worker lifetime.
in
Facade at line 135
static protected
createFreshMockInstance()
Create a fresh mock instance for the given class.
in
Facade at line 147
static protected
createMock()
Create a fresh mock instance for the given class.
in
Facade at line 157
static protected bool
isMock()
Determines whether a mock is set as the instance of the facade.
in
Facade at line 168
static protected string|null
getMockableClass()
Get the mockable class for the bound instance.
in
Facade at line 184
static
swap(mixed $instance)
Hotswap the underlying instance behind the facade.
Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.
in
Facade at line 196
static bool
isFake()
Determines whether a "fake" has been set as the facade instance.
in
Facade at line 207
static mixed
getFacadeRoot()
Get the root object behind the facade.
at line 81
static protected string
getFacadeAccessor()
Get the registered name of the component.
in
Facade at line 223
static protected mixed
resolveFacadeInstance(string $name)
Resolve the facade root instance from the container.
in
Facade at line 246
static void
clearResolvedInstance(string|null $name = null)
Clear a resolved facade instance.
Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.
in
Facade at line 257
static void
clearResolvedInstances()
Clear all of the resolved instances.
Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.
in
Facade at line 265
static Collection
defaultAliases()
Get the application default aliases.
in
Facade at line 324
static
getFacadeApplication()
Get the application instance behind the facade.
in
Facade at line 337
static void
setFacadeApplication(mixed $app)
Set the application instance.
Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.
in
Facade at line 347
static
__callStatic(string $method, array $args)
Handle dynamic, static calls to the object.
at line 73
static Builder
connection(string|null $name = null)
Get a schema builder instance for a connection.
at line 63
static void
defaultStringLength(int $length)
No description
at line 63
static void
defaultTimePrecision(int|null $precision)
No description
at line 63
static void
defaultMorphKeyType(string $type)
No description
at line 63
static void
flushState()
No description
at line 63
static void
morphUsingUuids()
No description
at line 63
static void
morphUsingUlids()
No description
at line 63
static bool
createDatabase(string $name)
No description
at line 63
static bool
dropDatabaseIfExists(string $name)
No description
at line 63
static array
getSchemas()
No description
at line 63
static bool
hasTable(string $table)
No description
at line 63
static bool
hasView(string $view)
No description
at line 63
static array
getTables(null|string|string[] $schema = 'null')
No description
at line 63
static array
getTableListing(array|string|null $schema = 'null', bool $schemaQualified = 'true')
No description
at line 63
static array
getViews(array|string|null $schema = 'null')
No description
at line 63
static array
getTypes(array|string|null $schema = 'null')
No description
at line 63
static bool
hasColumn(string $table, string $column)
No description
at line 63
static bool
hasColumns(string $table, string[] $columns)
No description
at line 63
static void
whenTableHasColumn(string $table, string $column, Closure $callback)
No description
at line 63
static void
whenTableDoesntHaveColumn(string $table, string $column, Closure $callback)
No description
at line 63
static void
whenTableHasIndex(string $table, array|string $index, Closure $callback, string|null $type = 'null')
No description
at line 63
static void
whenTableDoesntHaveIndex(string $table, array|string $index, Closure $callback, string|null $type = 'null')
No description
at line 63
static string
getColumnType(string $table, string $column, bool $fullDefinition = 'false')
No description
at line 63
static array
getColumnListing(string $table)
No description
at line 63
static array
getColumns(string $table)
No description
at line 63
static array
getIndexes(string $table)
No description
at line 63
static array
getIndexListing(string $table)
No description
at line 63
static bool
hasIndex(string $table, array|string $index, string|null $type = 'null')
No description
at line 63
static bool
hasForeignKey(string $table, array|string $foreignKey)
No description
at line 63
static array
getForeignKeys(string $table)
No description
at line 63
static void
table(string $table, Closure $callback)
No description
at line 63
static void
create(string $table, Closure $callback)
No description
at line 63
static void
drop(string $table)
No description
at line 63
static void
dropIfExists(string $table)
No description
at line 63
static void
dropColumns(string $table, string[]|string $columns)
No description
at line 63
static void
dropAllTables()
No description
at line 63
static void
dropAllViews()
No description
at line 63
static void
dropAllTypes()
No description
at line 63
static void
rename(string $from, string $to)
No description
at line 63
static bool
enableForeignKeyConstraints()
No description
at line 63
static bool
disableForeignKeyConstraints()
No description
at line 63
static mixed
withoutForeignKeyConstraints(Closure $callback)
No description
at line 63
static void
ensureVectorExtensionExists(string|null $schema = 'null')
No description
at line 63
static void
ensureExtensionExists(string $name, string|null $schema = 'null')
No description
at line 63
static null|string[]
getCurrentSchemaListing()
No description
at line 63
static string|null
getCurrentSchemaName()
No description
at line 63
static array
parseSchemaAndTable(string $reference, string|bool|null $withDefaultSchema = 'null')
No description
at line 63
static Connection
getConnection()
No description
at line 63
static void
blueprintResolver(Closure $resolver)
No description
at line 63
static void
macro(string $name, callable|object $macro)
No description
at line 63
static void
mixin(object $mixin, bool $replace = 'true')
No description
at line 63
static bool
hasMacro(string $name)
No description
at line 63
static void
flushMacros()
No description