Skip to content

Commit ab8afab

Browse files
committed
Query result formatter: remove column 'Index' from table head
There is no data column for the head column 'Index'.
1 parent bc9b29f commit ab8afab

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/PHPCR/Shell/Console/Helper/ResultFormatterHelper.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ public function formatQueryResult(QueryResultInterface $result, OutputInterface
6767
{
6868
$table = new Table($output);
6969
$table->setHeaders(array_merge([
70-
'Path',
71-
'Index',
70+
'Path'
7271
], $result->getColumnNames()));
7372

7473
foreach ($result->getRows() as $row) {

0 commit comments

Comments
 (0)