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