/**
  * Create a new command instance.
  *
  * MakeMigrationCommand constructor.
  * @param PackagerHelper $helper
  * @param MigrationCreatorFilip $creator
  */
 public function __construct(PackagerHelper $helper, MigrationCreatorFilip $creator, Composer $composer)
 {
     parent::__construct($helper);
     $this->helper = $helper;
     $this->creator = $creator;
     $this->composer = $composer;
 }
 /**
  * Create a new command instance.
  *
  * @param Filesystem  $files
  * @param Modules  $module
  */
 public function __construct(PackagerHelper $helper)
 {
     parent::__construct($helper);
     $this->helper = $helper;
 }