diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-08-23 15:10:27 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-08-25 19:34:58 +0200 |
commit | af6de04e9e141466dc229e444ff3f146f4a34765 (patch) | |
tree | 7b93f521865cdecdadb33637dea33bea242e7969 /core/Command/Memcache | |
parent | 1cc6b3577fdbeadece7e4e6478e7f7755555b41a (diff) | |
download | nextcloud-server-af6de04e9e141466dc229e444ff3f146f4a34765.tar.gz nextcloud-server-af6de04e9e141466dc229e444ff3f146f4a34765.zip |
style: update codestyle for coding-standard 1.2.3
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core/Command/Memcache')
-rw-r--r-- | core/Command/Memcache/RedisCommand.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Memcache/RedisCommand.php b/core/Command/Memcache/RedisCommand.php index 4da627c6b84..429dd28f3b3 100644 --- a/core/Command/Memcache/RedisCommand.php +++ b/core/Command/Memcache/RedisCommand.php @@ -34,7 +34,7 @@ class RedisCommand extends Base { protected function execute(InputInterface $input, OutputInterface $output): int { $command = $input->getArgument('redis-command'); if (!$this->redisFactory->isAvailable()) { - $output->writeln("<error>No redis server configured</error>"); + $output->writeln('<error>No redis server configured</error>'); return 1; } try { @@ -47,7 +47,7 @@ class RedisCommand extends Base { $redis->setOption(\Redis::OPT_REPLY_LITERAL, true); $result = $redis->rawCommand(...$command); if ($result === false) { - $output->writeln("<error>Redis command failed</error>"); + $output->writeln('<error>Redis command failed</error>'); return 1; } $output->writeln($result); |