8000 Make one call to "OutputInterface::write" method per table row · symfony/symfony@73b812e · GitHub
[go: up one dir, main page]

Skip to content

Commit 73b812e

Browse files
Alexander Obuhovichfabpot
Alexander Obuhovich
authored andcommitted
Make one call to "OutputInterface::write" method per table row
1 parent 2e93849 commit 73b812e

File tree

1 file changed

+11
-10
lines changed
  • src/Symfony/Component/Console/Helper

1 file changed

+11
-10
lines changed

src/Symfony/Component/Console/Helper/Table.php

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ private function renderRowSeparator()
257257
*/
258258
private function renderColumnSeparator()
259259
{
260-
$this->output->write(sprintf($this->style->getBorderFormat(), $this->style->getVerticalBorderChar()));
260+
return sprintf($this->style->getBorderFormat(), $this->style->getVerticalBorderChar());
261261
}
262262

263263
/**
@@ -274,12 +274,12 @@ private function renderRow(array $row, $cellFormat)
274274
return;
275275
}
276276

277-
$this->renderColumnSeparator();
277+
$rowContent = $this->renderColumnSeparator();
278278
foreach ($this->getRowColumns($row) as $column) {
279-
$this->renderCell($row, $column, $cellFormat);
280-
$this->renderColumnSeparator();
279+
$rowContent .= $this->renderCell($row, $column, $cellFormat);
280+
$rowContent .= $this->renderColumnSeparator();
281281
}
282-
$this->output->writeln('');
282+
$this->output->writeln($rowContent);
283283
}
284284

285285
/**
@@ -306,12 +306,13 @@ private function renderCell(array $row, $column, $cellFormat)
306306
}
307307

308308
if ($cell instanceof TableSeparator) {
309-
$this->output->write(sprintf($this->style->getBorderFormat(), str_repeat($this->style->getHorizontalBorderChar(), $width)));
310-
} else {
311-
$width += Helper::strlen($cell) - Helper::strlenWithoutDecoration($this->output->getFormatter(), $cell);
312-
$content = sprintf($this->style->getCellRowContentFormat(), $cell);
313-
$this->output->write(sprintf($cellFormat, str_pad($content, $width, $this->style->getPaddingChar(), $this->style->getPadType())));
309+
return sprintf($this->style->getBorderFormat(), str_repeat($this->style->getHorizontalBorderChar(), $width));
314310
}
311+
312+
$width += Helper::strlen($cell) - Helper::strlenWithoutDecoration($this->output->getFormatter(), $cell);
313+
$content = sprintf($this->style->getCellRowContentFormat(), $cell);
314+
315+
return sprintf($cellFormat, str_pad($content, $width, $this->style->getPaddingChar(), $this->style->getPadType()));
315316
}
316317

317318
/**

0 commit comments

Comments
 (0)
0