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