Ejemplo n.º 1
0
 /**
  * Adds one Cloneable\Row object to rows array.
  *
  * @param null $values
  */
 private function addRow($values = null)
 {
     $row = new Cloneable\Row($this);
     if ($values !== null) {
         $row->setValues($values);
     }
     $this->rows[] = $row;
 }