Linting: Fix misc problems (#12675)

This commit is contained in:
Jellyfrog
2021-03-30 00:43:05 +02:00
committed by GitHub
parent 571e1b67bf
commit 6c59f368b0
16 changed files with 29 additions and 18 deletions

View File

@@ -47,7 +47,7 @@ class GetConfigCommand extends LnmsCommand
if (Config::has($setting)) {
$output = Config::get($setting);
if (! is_string($output)) {
$output = var_export($output, 1);
$output = var_export($output, true);
}
$this->line($output);