Example #1
0
 /**
  * Prepend cell
  * 
  * @param Cell $cell
  */
 public function prependCell(Cell $cell)
 {
     $cell->setRow($this);
     $this->cells->unshift($cell);
 }