Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function __construct() |
||
30 | { |
||
31 | parent::__construct(); |
||
32 | |||
33 | $this->setChoices([ |
||
34 | ListApiKeysCommand::NAME => 'List API keys', |
||
35 | CreateApiKeyCommand::NAME => 'Create API key', |
||
36 | EditApiKeyCommand::NAME => 'Edit API key', |
||
37 | ChangeTokenCommand::NAME => 'Change API key token', |
||
38 | RemoveApiKeyCommand::NAME => 'Remove API key', |
||
39 | '0' => 'Exit', |
||
40 | ]); |
||
43 |