fix typo
parent
63eb178297
commit
46db638678
|
@ -77,10 +77,10 @@ EOT
|
||||||
$table = new Table($output);
|
$table = new Table($output);
|
||||||
$table->setStyle('compact');
|
$table->setStyle('compact');
|
||||||
$tableStyle = $table->getStyle();
|
$tableStyle = $table->getStyle();
|
||||||
if (method_exists($rendererStyle, 'setVerticalBorderChars')) {
|
if (method_exists($tableStyle, 'setVerticalBorderChars')) {
|
||||||
$rendererStyle->setVerticalBorderChars('');
|
$tableStyle->setVerticalBorderChars('');
|
||||||
} else {
|
} else {
|
||||||
$rendererStyle->setVerticalBorderChar('');
|
$tableStyle->setVerticalBorderChar('');
|
||||||
}
|
}
|
||||||
$tableStyle->setCellRowContentFormat('%s ');
|
$tableStyle->setCellRowContentFormat('%s ');
|
||||||
$table->setHeaders(array('Name', 'Version', 'License'));
|
$table->setHeaders(array('Name', 'Version', 'License'));
|
||||||
|
|
Loading…
Reference in New Issue