Skip to content

Commit

Permalink
Set default command names
Browse files Browse the repository at this point in the history
  • Loading branch information
saulens22 committed Mar 25, 2024
1 parent c0525a0 commit c049aab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Commands/CheckLicenses.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function __construct(
private readonly DependencyTree $dependencyTree,
private readonly TableRenderer $tableRenderer
) {
parent::__construct();
parent::__construct(self::$defaultName);
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/CountUsedLicenses.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CountUsedLicenses extends Command
public function __construct(
private readonly UsedLicensesParser $usedLicensesParser
) {
parent::__construct();
parent::__construct(self::$defaultName);
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/GenerateConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function __construct(
private readonly AllowedLicensesParser $allowedLicensesParser,
private readonly UsedLicensesParser $usedLicensesParser
) {
parent::__construct();
parent::__construct(self::$defaultName);
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ListAllowedLicenses.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ListAllowedLicenses extends Command
public function __construct(
private readonly AllowedLicensesParser $allowedLicensesParser
) {
parent::__construct();
parent::__construct(self::$defaultName);
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ListUsedLicenses.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ListUsedLicenses extends Command
public function __construct(
private readonly UsedLicensesParser $usedLicensesParser
) {
parent::__construct();
parent::__construct(self::$defaultName);
}

protected function configure(): void
Expand Down

0 comments on commit c049aab

Please sign in to comment.