Skip to content

Commit a5a6285

Browse files
authored
Merge pull request #8 from TomHAnderson/hotfix/command-descriptions
Normalized names in command descriptions
2 parents c6f3e37 + a3e1c42 commit a5a6285

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Console/Command/ActivateApiKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class ActivateApiKey extends Command
1717
/**
1818
* The console command description.
1919
*/
20-
protected $description = 'Activate an ApiKey';
20+
protected $description = 'Activate an apikey';
2121

2222
/**
2323
* Execute the console command.

src/Console/Command/AddScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class AddScope extends Command
1919
/**
2020
* The console command description.
2121
*/
22-
protected $description = 'Add a Scope to an ApiKey';
22+
protected $description = 'Add a scope to an apikey';
2323

2424
/**
2525
* Execute the console command.

src/Console/Command/DeactivateApiKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class DeactivateApiKey extends Command
1717
/**
1818
* The console command description.
1919
*/
20-
protected $description = 'Deactivate an ApiKey';
20+
protected $description = 'Deactivate an apikey';
2121

2222
/**
2323
* Execute the console command.

src/Console/Command/DeleteScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final class DeleteScope extends Command
1818
/**
1919
* The console command description.
2020
*/
21-
protected $description = 'Delete an ApiKey Scope (Delete a scope, not a relationship)';
21+
protected $description = 'Delete a scope (delete a scope, not an apikey relationship)';
2222

2323
/**
2424
* Execute the console command.

src/Console/Command/RemoveScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class RemoveScope extends Command
1919
/**
2020
* The console command description.
2121
*/
22-
protected $description = 'Remove a Scope from an ApiKey';
22+
protected $description = 'Remove a scope from an apikey';
2323

2424
/**
2525
* Execute the console command.

0 commit comments

Comments
 (0)