[Console] Helper\Table->addRow optimization

This commit is contained in:
Warnar Boekkooi 2015-01-09 16:09:18 +01:00
parent d5e9de2f94
commit 9ea59ac531
1 changed files with 3 additions and 2 deletions

View File

@ -143,8 +143,9 @@ class TableHelper extends Helper
{
$this->rows[] = array_values($row);
$keys = array_keys($this->rows);
$rowKey = array_pop($keys);
end($this->rows);
$rowKey = key($this->rows);
reset($this->rows);
foreach ($row as $key => $cellValue) {
if (!strstr($cellValue, "\n")) {