We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78ee1d9 + 704c14a commit 006cca0Copy full SHA for 006cca0
src/PHPCR/Util/Console/Command/QueryCommand.php
@@ -85,7 +85,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
85
foreach ($result as $i => $row) {
86
$output->writeln("\n".($i+1).'. Row (Path: '. $row->getPath() .', Score: '. $row->getScore() .'):');
87
foreach ($row as $column => $value) {
88
- $output->writeln("$column: $value");
+ $output->writeln("$column: ".var_export($value, true));
89
}
90
91
$output->writeln(sprintf('<info>%.2f seconds</info>', $elapsed));
0 commit comments