/**
  * Get the console command parameters.
  * @param Module $module
  * @return array
  */
 protected function getParameters(Module $module)
 {
     $params = [];
     $params['--path'] = str_replace(base_path(), '', $module->getPath());
     $params['--path'] .= 'Database/Migrations/';
     if ($option = $this->option('database')) {
         $params['--database'] = $option;
     }
     if ($option = $this->option('force')) {
         $params['--force'] = $option;
     }
     if ($option = $this->option('pretend')) {
         $params['--pretend'] = $option;
     }
     if ($option = $this->option('seed')) {
         $params['--seed'] = $option;
     }
     return $params;
 }
 /**
  * Returns the path to the destination file.
  * @return string
  */
 public function getFilePath()
 {
     $fileName = studly_case($this->handlerName) . '.php';
     return $this->module->getPath() . 'Handlers/' . ucfirst($this->handlerType) . 's/' . $fileName;
 }
 /**
  * Returns the path to the destination file.
  * @return string
  */
 public function getFilePath()
 {
     $migrationName = $this->getMigrationName();
     return $this->module->getPath() . 'Database/Migrations/' . $migrationName;
 }
 /**
  * Returns the path to the destination file.
  * @return string
  */
 public function getFilePath()
 {
     $fileName = studly_case($this->commandName) . '.php';
     return $this->module->getPath() . 'Commands/' . $fileName;
 }
 /**
  * Returns the path to the destination file.
  * @return string
  */
 public function getFilePath()
 {
     return $this->module->getPath() . 'Http/Requests/' . $this->getRequestName() . '.php';
 }
 /**
  * Returns the path to the destination file.
  * @return string
  */
 public function getFilePath()
 {
     $fileName = studly_case($this->eventName) . '.php';
     return $this->module->getPath() . 'Events/' . $fileName;
 }