Remove unused import, add docblocks

This commit is contained in:
Oliver Davies 2019-02-13 22:31:51 +00:00
parent d196e35deb
commit c557adf8e1

View file

@ -7,7 +7,6 @@ use Symfony\Component\Cache\Simple\FilesystemCache;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\Console\Style\SymfonyStyle;
@ -26,6 +25,9 @@ class PickWinnerCommand extends Command
$this->client = new Client(); $this->client = new Client();
} }
/**
* {@inheritdoc}
*/
protected function configure() protected function configure()
{ {
$this $this
@ -36,6 +38,9 @@ class PickWinnerCommand extends Command
; ;
} }
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output)
{ {
$io = new SymfonyStyle($input, $output); $io = new SymfonyStyle($input, $output);