Skip to content

Commit

Permalink
Merge pull request #8 from TomHAnderson/hotfix/command-descriptions
Browse files Browse the repository at this point in the history
Normalized names in command descriptions
  • Loading branch information
TomHAnderson authored Dec 17, 2021
2 parents c6f3e37 + a3e1c42 commit a5a6285
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Console/Command/ActivateApiKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class ActivateApiKey extends Command
/**
* The console command description.
*/
protected $description = 'Activate an ApiKey';
protected $description = 'Activate an apikey';

/**
* Execute the console command.
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/AddScope.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class AddScope extends Command
/**
* The console command description.
*/
protected $description = 'Add a Scope to an ApiKey';
protected $description = 'Add a scope to an apikey';

/**
* Execute the console command.
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/DeactivateApiKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class DeactivateApiKey extends Command
/**
* The console command description.
*/
protected $description = 'Deactivate an ApiKey';
protected $description = 'Deactivate an apikey';

/**
* Execute the console command.
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/DeleteScope.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ final class DeleteScope extends Command
/**
* The console command description.
*/
protected $description = 'Delete an ApiKey Scope (Delete a scope, not a relationship)';
protected $description = 'Delete a scope (delete a scope, not an apikey relationship)';

/**
* Execute the console command.
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/RemoveScope.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class RemoveScope extends Command
/**
* The console command description.
*/
protected $description = 'Remove a Scope from an ApiKey';
protected $description = 'Remove a scope from an apikey';

/**
* Execute the console command.
Expand Down

0 comments on commit a5a6285

Please sign in to comment.