| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 28 | { |
||
| 29 | if (Pad::deletePad( |
||
| 30 | $input->getArgument('padId'), |
||
| 31 | $input->getOption('apikey'), |
||
| 32 | $input->getOption('host') |
||
| 33 | )) { |
||
| 34 | $output->writeln('Pad successfully deleted!'); |
||
| 35 | } else { |
||
| 36 | $output->writeln('Pad could not deleted!'); |
||
| 37 | } |
||
| 38 | } |
||
| 39 | } |
||
| 40 |