1
0
Fork 0

Docs and whitespace

pull/3983/head
Rob Bast 2015-04-30 12:22:54 +02:00
parent bef46a17dc
commit 290fafa156
1 changed files with 14 additions and 1 deletions

View File

@ -33,12 +33,18 @@ use Symfony\Component\Process\ExecutableFinder;
*/ */
class InitCommand extends Command class InitCommand extends Command
{ {
/** @var CompositeRepository */
protected $repos; protected $repos;
/** @var array */
private $gitConfig; private $gitConfig;
/** @var Pool */
private $pool; private $pool;
/**
* {@inheritdoc}
*/
protected function configure() protected function configure()
{ {
$this $this
@ -67,6 +73,9 @@ EOT
; ;
} }
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output)
{ {
$dialog = $this->getHelperSet()->get('dialog'); $dialog = $this->getHelperSet()->get('dialog');
@ -133,12 +142,16 @@ EOT
} }
} }
/**
* {@inheritdoc}
*/
protected function interact(InputInterface $input, OutputInterface $output) protected function interact(InputInterface $input, OutputInterface $output)
{ {
$git = $this->getGitConfig(); $git = $this->getGitConfig();
$dialog = $this->getHelperSet()->get('dialog'); $dialog = $this->getHelperSet()->get('dialog');
$formatter = $this->getHelperSet()->get('formatter'); $formatter = $this->getHelperSet()->get('formatter');
$this->getIO()->writeError(array( $this->getIO()->writeError(array(
'', '',
$formatter->formatBlock('Welcome to the Composer config generator', 'bg=blue;fg=white', true), $formatter->formatBlock('Welcome to the Composer config generator', 'bg=blue;fg=white', true),