| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function confirmationProcess($input, $output, $helper, $message) |
||
| 10 | { |
||
| 11 | $question = new ConfirmationQuestion('Continue with this action? <info>Y/n</info> ', true); |
||
| 12 | if (!$helper->ask($input, $output, $question)) { |
||
| 13 | return $output->writeln("<fg=blue;>".$message.'</>'); |
||
| 14 | } |
||
| 15 | } |
||
| 16 | } |