summaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/Background/Base.php2
-rw-r--r--core/Command/Encryption/DecryptAll.php2
-rw-r--r--core/Command/Encryption/EncryptAll.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/core/Command/Background/Base.php b/core/Command/Background/Base.php
index 48d9edb8c8a..a00a8fe4c51 100644
--- a/core/Command/Background/Base.php
+++ b/core/Command/Background/Base.php
@@ -71,7 +71,7 @@ abstract class Base extends Command {
*/
protected function execute(InputInterface $input, OutputInterface $output) {
$mode = $this->getMode();
- $this->config->setAppValue( 'core', 'backgroundjobs_mode', $mode );
+ $this->config->setAppValue('core', 'backgroundjobs_mode', $mode);
$output->writeln("Set mode for background jobs to '$mode'");
}
}
diff --git a/core/Command/Encryption/DecryptAll.php b/core/Command/Encryption/DecryptAll.php
index 4d7b4028396..b4dc3e0160a 100644
--- a/core/Command/Encryption/DecryptAll.php
+++ b/core/Command/Encryption/DecryptAll.php
@@ -125,7 +125,7 @@ class DecryptAll extends Command {
}
protected function execute(InputInterface $input, OutputInterface $output) {
- if ( !$input->isInteractive() ) {
+ if (!$input->isInteractive()) {
$output->writeln('Invalid TTY.');
$output->writeln('If you are trying to execute the command in a Docker ');
$output->writeln("container, do not forget to execute 'docker exec' with");
diff --git a/core/Command/Encryption/EncryptAll.php b/core/Command/Encryption/EncryptAll.php
index fecb7778ed8..77c2cb31204 100644
--- a/core/Command/Encryption/EncryptAll.php
+++ b/core/Command/Encryption/EncryptAll.php
@@ -106,7 +106,7 @@ class EncryptAll extends Command {
}
protected function execute(InputInterface $input, OutputInterface $output) {
- if ( !$input->isInteractive() ) {
+ if (!$input->isInteractive()) {
$output->writeln('Invalid TTY.');
$output->writeln('If you are trying to execute the command in a Docker ');
$output->writeln("container, do not forget to execute 'docker exec' with");