Example #1
0
 /**
  * Renvoit l'update associé au modèle
  *
  * @throws Fdap_Model_Exception
  * @return string
  */
 public function getUpdateQuery()
 {
     $validation = $this->model->validate();
     if ($validation !== true) {
         throw new Fdap_Model_Exception("The update query can't be transmited if the model is not valid", $validation);
     }
 }