Skip to content

Commit

Permalink
fix code style in core/Command/App/Enable.php
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Dec 12, 2019
1 parent 89b6ab4 commit cb5b6b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/Command/App/Enable.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ protected function execute(InputInterface $input, OutputInterface $output) {
}

if (\OC_App::isEnabled('enterprise_key')) {
$key = new \OCA\Enterprise_Key\EnterpriseKey(false, $this->config);
$key = new \OCA\Enterprise_Key\EnterpriseKey(false, $this->config);
if ($key && !$key->isValid()) {
$output->writeln($appId . ' cannot be enabled because of invalid enterprise key');
return 1;
$output->writeln($appId . ' cannot be enabled because of invalid enterprise key');
return 1;
}
}

Expand Down

0 comments on commit cb5b6b4

Please sign in to comment.