| 1 | <?php |
||
| 10 | class PhotoRemoveCommand extends ContainerAwareCommand |
||
| 11 | { |
||
| 12 | protected function configure() |
||
| 13 | { |
||
| 14 | $this |
||
| 15 | ->setName('upont:remove:photo') |
||
| 16 | ->setDescription('Remove the photo of a user') |
||
| 17 | ->addArgument('username', InputArgument::REQUIRED, 'The user whose photo is to be removed.'); |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 28 | } |
||
| 29 |