コード例 #1
0
ファイル: Sheet.php プロジェクト: Asisyas/ExcelAnt
 /**
  * {@inheritdoc}
  */
 public function addCell(CellInterface $cell, Coordinate $coordinate)
 {
     $cell->setCoordinate($coordinate);
     $this->cells[] = $cell;
     return $this;
 }