Webmozart\Console\UI\Component\Grid::setCells PHP Метод

setCells() публичный Метод

Sets the data cells in the grid.
public setCells ( array $cells ) : static
$cells array The data cells to set.
Результат static The current instance.
    public function setCells(array $cells)
    {
        $this->cells = array();
        $this->addCells($cells);
        return $this;
    }