Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
29 | protected function execute(InputInterface $input, OutputInterface $output) |
||
30 | { |
||
31 | // outputs multiple lines to the console (adding "\n" at the end of each line) |
||
32 | $output->writeln([ |
||
33 | 'Trying `to greet` the world', |
||
34 | '============', |
||
35 | ]); |
||
36 | |||
37 | // outputs a message followed by a "\n" |
||
38 | $output->writeln('Great the world `accept you`'); |
||
39 | } |
||
40 | } |