| Conditions | 3 |
| Paths | 4 |
| Total Lines | 15 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 32 | { |
||
| 33 | $name = $input->getArgument('name'); |
||
| 34 | |||
| 35 | if (is_string($name)) { |
||
| 36 | $text = 'Hello ' . $name; |
||
| 37 | } else { |
||
| 38 | $text = 'Hello'; |
||
| 39 | } |
||
| 40 | |||
| 41 | if ($input->getOption('yell')) { |
||
| 42 | $text = strtoupper($text); |
||
| 43 | } |
||
| 44 | |||
| 45 | $output->writeln($text); |
||
| 46 | } |
||
| 47 | } |