Skip to content

Commit

Permalink
Remove random echo statements added by pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
thaiphan committed Jun 9, 2018
1 parent 522a1dc commit dc3f9a8
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions Console/Command/ConfigListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
// intentionally left empty
}

echo(sprintf("[Debug] App Area: %s\n", $this->state->getAreaCode())); // Required to avoid "area code not set" error

$config = $this->configFactory->create();
$output->writeln('Here are your AWS credentials.');
$output->writeln('');
Expand Down
2 changes: 0 additions & 2 deletions Console/Command/ConfigSetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
// intentionally left empty
}

echo(sprintf("[Debug] App Area: %s\n", $this->state->getAreaCode())); // Required to avoid "area code not set" error

if (!$input->getOption('region') && !$input->getOption('bucket') && !$input->getOption('secret-key') && !$input->getOption('access-key-id')) {
$output->writeln($this->getSynopsis());
return;
Expand Down
2 changes: 0 additions & 2 deletions Console/Command/CustomEndpointDisableCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
// intentionally left empty
}

echo(sprintf("[Debug] App Area: %s\n", $this->state->getAreaCode())); // Required to avoid "area code not set" error

$output->writeln('Updating configuration to use Amazon S3 as the default endpoint.');

$config = $this->configFactory->create();
Expand Down
2 changes: 0 additions & 2 deletions Console/Command/StorageEnableCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
// intentionally left empty
}

echo(sprintf("[Debug] App Area: %s\n", $this->state->getAreaCode())); // Required to avoid "area code not set" error

$errors = $this->validate($input);
if ($errors) {
$output->writeln('<error>' . implode('</error>' . PHP_EOL . '<error>', $errors) . '</error>');
Expand Down
2 changes: 0 additions & 2 deletions Console/Command/StorageExportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
// intentionally left empty
}

echo(sprintf("[Debug] App Area: %s\n", $this->state->getAreaCode())); // Required to avoid "area code not set" error

$errors = $this->validate($input);
if ($errors) {
$output->writeln('<error>' . implode('</error>' . PHP_EOL . '<error>', $errors) . '</error>');
Expand Down

0 comments on commit dc3f9a8

Please sign in to comment.