Skip to content

Commit 5967246

Browse files
committed
Fix merge hiccup
1 parent e075e84 commit 5967246

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/cli/Table.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,16 +164,16 @@ public function display() {
164164
public function displayRow(array $row) {
165165
// Update widths if this row has wider content
166166
$row = $this->checkRow($row);
167-
167+
168168
// Recalculate widths for the renderer
169169
$this->_renderer->setWidths($this->_width, false);
170-
170+
171171
$rendered_row = $this->_renderer->row($row);
172172
$row_lines = explode( PHP_EOL, $rendered_row );
173173
foreach ( $row_lines as $line ) {
174174
Streams::line( $line );
175175
}
176-
176+
177177
$border = $this->_renderer->border();
178178
if (isset($border)) {
179179
Streams::line( $border );
@@ -209,6 +209,7 @@ public function getDisplayLines() {
209209
$row = explode( PHP_EOL, $row );
210210
$out = array_merge( $out, $row );
211211
}
212+
}
212213

213214
// Only add final border if there are rows
214215
if (!empty($this->_rows) && isset($border)) {

0 commit comments

Comments
 (0)