/** * Create a new command instance. * * @param MigrationCreator $creator * @param Composer $composer * @param Filesystem $files */ public function __construct(MigrationCreator $creator, Composer $composer, Filesystem $files) { parent::__construct($creator, $composer); $this->files = $files; $this->filterName = config('batched.migrations.filter_name'); $this->filtered = config('batched.migrations.filtered'); $this->prefixName = config('batched.migrations.prefix_name'); $this->prefixes = config('batched.migrations.prefixes'); $this->nameRegex = '/([0-9]{4}\\_[0-9]{2}\\_[0-9]{2}\\_[0-9]{6})\\_([a-zA-Z_]+)([0-9]*)/'; }
/** * Create a new migration install command instance. * * @param brunojk\LaravelRethinkdb\Migrations\MigrationCreator $creator * @param \Illuminate\Support\Composer $composer * * @return void */ public function __construct(MigrationCreator $creator, Composer $composer) { parent::__construct($creator, $composer); }