Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 1 | public function getValues(OutputInterface $output, DialogHelper $dialog) |
|
16 | { |
||
17 | 1 | $value = $dialog->ask( |
|
18 | 1 | $output, |
|
19 | "<info>Encrypted Slack Notification code</info>: " |
||
20 | 1 | ); |
|
21 | |||
22 | return [ |
||
23 | 1 | 'slack_notification' => $value ? " slack:\n secure: $value\n" : null |
|
24 | 1 | ]; |
|
25 | } |
||
26 | } |
||
28 |