Exemplo n.º 1
0
Arquivo: Entity.php Projeto: aazon/sfm
 /**
  * @return $this
  * @throws SFM_Exception
  */
 public function save()
 {
     $id = $this->mapper->saveEntity($this, $this->simpleValues);
     if ($this->isDummy()) {
         $this->setId($id);
     }
     //Entity should not be dirty any more
     $this->initialSimpleValues = $this->simpleValues;
     return $this;
 }