Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
48 | protected function doExecuteCommand(InputInterface $input, OutputInterface $output) |
||
49 | { |
||
50 | $profile = new Profile(); |
||
51 | $profile->setId($input->getArgument('profile-id')); |
||
52 | $this->getCloud($input)->deleteProfile($profile); |
||
53 | $output->writeln( |
||
54 | '<info>Successfully deleted profile '.$profile->getName().'</info>' |
||
55 | ); |
||
56 | } |
||
57 | } |
||
58 |