Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit 8148ad8

Browse files
committed
minor linguistic changes to make:feature
1 parent 2ba2fc6 commit 8148ad8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/Commands/FeatureMakeCommand.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ class FeatureMakeCommand extends GeneratorCommand
4545
*/
4646
protected $type = 'Feature';
4747

48+
/**
49+
* Execute the console command.
50+
*
51+
* @return bool|null
52+
*/
4853
public function fire()
4954
{
5055
$service = studly_case($this->argument('service'));
@@ -69,7 +74,7 @@ public function fire()
6974

7075
$this->createFile($path, $content);
7176

72-
$this->info('Class '.$feature.' created successfully.'.
77+
$this->info('Feature class '.$feature.' created successfully.'.
7378
"\n".
7479
"\n".
7580
'Find it at <comment>'.strstr($path, 'src/').'</comment>'."\n");
@@ -84,7 +89,7 @@ protected function getArguments()
8489
{
8590
return [
8691
['service', InputArgument::REQUIRED, 'The service in which the feature should be implemented.'],
87-
['feature', InputArgument::REQUIRED, 'The feature name'],
92+
['feature', InputArgument::REQUIRED, 'The feature\'s name.'],
8893
];
8994
}
9095

0 commit comments

Comments
 (0)