Webmozart\Console\UI\Component\Grid::setCells PHP Méthode

setCells() public méthode

Sets the data cells in the grid.
public setCells ( array $cells ) : static
$cells array The data cells to set.
Résultat static The current instance.
    public function setCells(array $cells)
    {
        $this->cells = array();
        $this->addCells($cells);
        return $this;
    }