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