Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 11 | private static function apikey() |
|
21 | { |
||
22 | 11 | global $argv; |
|
23 | |||
24 | 11 | return Item::create() |
|
25 | 11 | ->title('Enter your API token above') |
|
26 | 11 | ->subtitle('Save ' . self::userInput()) |
|
27 | 11 | ->arg('clockify_setup_apikey_save') |
|
28 | 11 | ->variable('clockify_apikey', self::userInput()) |
|
29 | 11 | ->icon(Icon::create('resources/icons/clockify.png')); |
|
30 | } |
||
41 |