Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/CliService.php')
-rw-r--r--lib/Service/CliService.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Service/CliService.php b/lib/Service/CliService.php
index 6e08977..3b16977 100644
--- a/lib/Service/CliService.php
+++ b/lib/Service/CliService.php
@@ -170,7 +170,7 @@ class CliService {
$initVar = $this->runner->getInfoAll();
$keys = array_keys($initVar);
foreach ($keys as $key) {
- $this->display->setMessage($initVar[$key], $key);
+ $this->display->setMessage((string)$initVar[$key], (string)$key);
}
$this->display->clear();
@@ -225,7 +225,7 @@ class CliService {
$keys = array_keys($info);
foreach ($keys as $k) {
- $this->display->setMessage((string)$info[$k], $k);
+ $this->display->setMessage((string)$info[$k], (string)$k);
}
$this->refreshInfo();