Skip to content

Commit

Permalink
normalizes case for make commands
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cintra committed Oct 26, 2023
1 parent 376a7b3 commit 1f257bd
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Console/MakeComponentCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating component...');
$this->comment('Module '.$this->moduleName.' found, creating Component...');
$this->createComponent();

$this->generateComments();
Expand Down
2 changes: 1 addition & 1 deletion src/Console/MakeComposableCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating composable...');
$this->comment('Module '.$this->moduleName.' found, creating Composable...');
$this->createComposable();

$this->generateComments();
Expand Down
2 changes: 1 addition & 1 deletion src/Console/MakeControllerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating controller...');
$this->comment('Module '.$this->moduleName.' found, creating Controller...');
$this->createModuleController();

return self::SUCCESS;
Expand Down
2 changes: 1 addition & 1 deletion src/Console/MakeModelCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating model...');
$this->comment('Module '.$this->moduleName.' found, creating Model...');
$this->createModuleModel();

return self::SUCCESS;
Expand Down
2 changes: 1 addition & 1 deletion src/Console/MakePageCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating pages...');
$this->comment('Module '.$this->moduleName.' found, creating Pages...');
$this->createIndexPage();
$this->createFormPage();

Expand Down
2 changes: 1 addition & 1 deletion src/Console/MakeRouteCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating route...');
$this->comment('Module '.$this->moduleName.' found, creating Route...');
$this->createModuleRoute();

return self::SUCCESS;
Expand Down
2 changes: 1 addition & 1 deletion src/Console/MakeServiceCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating service...');
$this->comment('Module '.$this->moduleName.' found, creating Service...');
$this->createModuleService();

return self::SUCCESS;
Expand Down
2 changes: 1 addition & 1 deletion src/Console/MakeValidateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function handle()
return self::FAILURE;
}

$this->comment('Module '.$this->moduleName.' found, creating HTTP Request Validate file...');
$this->comment('Module '.$this->moduleName.' found, creating HTTP Request Validate...');
$this->createValidateFile();

return self::SUCCESS;
Expand Down

0 comments on commit 1f257bd

Please sign in to comment.