aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Encryption/DecryptAll.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Encryption/DecryptAll.php')
-rw-r--r--lib/private/Encryption/DecryptAll.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/private/Encryption/DecryptAll.php b/lib/private/Encryption/DecryptAll.php
index f9a92d07d20..0007467298c 100644
--- a/lib/private/Encryption/DecryptAll.php
+++ b/lib/private/Encryption/DecryptAll.php
@@ -17,13 +17,13 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class DecryptAll {
- /** @var OutputInterface */
+ /** @var OutputInterface */
protected $output;
- /** @var InputInterface */
+ /** @var InputInterface */
protected $input;
- /** @var array files which couldn't be decrypted */
+ /** @var array files which couldn't be decrypted */
protected $failed;
public function __construct(
@@ -114,7 +114,7 @@ class DecryptAll {
$fetchUsersProgress = new ProgressBar($this->output);
$fetchUsersProgress->setFormat(" %message% \n [%bar%]");
$fetchUsersProgress->start();
- $fetchUsersProgress->setMessage("Fetch list of users...");
+ $fetchUsersProgress->setMessage('Fetch list of users...');
$fetchUsersProgress->advance();
foreach ($this->userManager->getBackends() as $backend) {
@@ -128,7 +128,7 @@ class DecryptAll {
$offset += $limit;
$fetchUsersProgress->advance();
} while (count($users) >= $limit);
- $fetchUsersProgress->setMessage("Fetch list of users... finished");
+ $fetchUsersProgress->setMessage('Fetch list of users... finished');
$fetchUsersProgress->finish();
}
} else {
@@ -140,7 +140,7 @@ class DecryptAll {
$progress = new ProgressBar($this->output);
$progress->setFormat(" %message% \n [%bar%]");
$progress->start();
- $progress->setMessage("starting to decrypt files...");
+ $progress->setMessage('starting to decrypt files...');
$progress->advance();
$numberOfUsers = count($userList);
@@ -151,7 +151,7 @@ class DecryptAll {
$userNo++;
}
- $progress->setMessage("starting to decrypt files... finished");
+ $progress->setMessage('starting to decrypt files... finished');
$progress->finish();
$this->output->writeln("\n\n");