/**
  * @param  \Vinelab\NeoEloquent\Migrations\MigrationCreator  $creator
  * @param  string  $packagePath
  * @return void
  */
 public function __construct(MigrationCreator $creator, Composer $composer, $packagePath)
 {
     parent::__construct();
     $this->creator = $creator;
     $this->packagePath = $packagePath;
     $this->composer = $composer;
 }
 /**
  * @param  \Vinelab\NeoEloquent\Migrations\Migrator  $migrator
  * @param  string  $packagePath
  * @return void
  */
 public function __construct(Migrator $migrator, $packagePath)
 {
     parent::__construct();
     $this->migrator = $migrator;
     $this->packagePath = $packagePath;
 }