Skip to content

Commit 6104f20

Browse files
authored
Merge pull request #2 from smeghead/command-options
fix: Fixed message when missing required argument.
2 parents b98f264 + 4645666 commit 6104f20

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
* add own CREDITS.
88

9+
### Bug fix
10+
11+
* Fixed message when missing required argument.
12+
913
## v0.0.3 (2024-01-30)
1014

1115
### Features

bin/php-vendor-credits

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ use Smeghead\PhpVendorCredits\Command\CreditsCommand;
1414
use Symfony\Component\Console\Application;
1515

1616
$app = new Application('php-vendor-credits', '0.0.4');
17-
$app->add(new CreditsCommand('credits'));
18-
$app->setDefaultCommand('credits', true);
17+
$app->add(new CreditsCommand('php-vendor-credits'));
18+
$app->setDefaultCommand('php-vendor-credits', true);
1919
$app->run();

0 commit comments

Comments
 (0)