ExcelAnt\Adapter\PhpExcel\Sheet\Sheet::addCell PHP Method

addCell() public method

public addCell ( ExcelAnt\Cell\CellInterface $cell, ExcelAnt\Coordinate\Coordinate $coordinate )
$cell ExcelAnt\Cell\CellInterface
$coordinate ExcelAnt\Coordinate\Coordinate
    public function addCell(CellInterface $cell, Coordinate $coordinate)
    {
        $cell->setCoordinate($coordinate);
        $this->cells[] = $cell;
        return $this;
    }