MigrationCreator
class MigrationCreator
Constants
| protected CURRENT_MIGRATION_PATH_CONTEXT_KEY_PREFIX |
|
Properties
| protected array | $postCreate | The registered post create hooks. |
Methods
Create a new migration creator instance.
Create a new migration at the given path.
Ensure that a migration with the given name doesn't already exist.
Get the migration stub file.
Populate the place-holders in the migration stub.
Get the class name of a migration name.
Get the full path to the migration.
Get a collision-free full path to the migration.
Fire the registered post create hooks.
Get the date prefix for the migration.
Get files matching the given pattern.
Get the path to the stubs.
Get the filesystem instance.
Details
at line 28
__construct(Filesystem $files, string|null $customStubPath = null)
Create a new migration creator instance.
at line 39
string
create(string $name, string $path, string|null $table = null, bool $create = false, string|null $stubPath = null)
Create a new migration at the given path.
at line 72
protected void
ensureMigrationDoesntAlreadyExist(string $name, string|null $migrationPath = null)
Ensure that a migration with the given name doesn't already exist.
at line 90
protected string
getStub(string|null $table, bool $create)
Get the migration stub file.
at line 112
protected string
populateStub(string $stub, string|null $table)
Populate the place-holders in the migration stub.
at line 131
protected string
getClassName(string $name)
Get the class name of a migration name.
at line 139
protected string
getPath(string $name, string $path)
Get the full path to the migration.
at line 147
protected string
getCollisionFreePath(string $name, string $path)
Get a collision-free full path to the migration.
at line 163
protected void
firePostCreateHooks(string|null $table, string $path)
Fire the registered post create hooks.
at line 173
void
afterCreate(Closure $callback)
Register a post migration create hook.
at line 181
protected string
getDatePrefix()
Get the date prefix for the migration.
at line 205
protected array
matchingFiles(string $pattern)
Get files matching the given pattern.
at line 219
string
stubPath()
Get the path to the stubs.
at line 227
Filesystem
getFilesystem()
Get the filesystem instance.