From c557adf8e1a9406a02a55365d618f01a20a62643 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 13 Feb 2019 22:31:51 +0000 Subject: [PATCH] Remove unused import, add docblocks --- src/Command/PickWinnerCommand.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Command/PickWinnerCommand.php b/src/Command/PickWinnerCommand.php index e6e750b..4777b34 100644 --- a/src/Command/PickWinnerCommand.php +++ b/src/Command/PickWinnerCommand.php @@ -7,7 +7,6 @@ use Symfony\Component\Cache\Simple\FilesystemCache; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; @@ -26,6 +25,9 @@ class PickWinnerCommand extends Command $this->client = new Client(); } + /** + * {@inheritdoc} + */ protected function configure() { $this @@ -36,6 +38,9 @@ class PickWinnerCommand extends Command ; } + /** + * {@inheritdoc} + */ protected function execute(InputInterface $input, OutputInterface $output) { $io = new SymfonyStyle($input, $output);