예제 #1
0
파일: ORMModel.php 프로젝트: vitordm/VTRORM
 /**
  * Reset all objects
  */
 public function reset()
 {
     $this->CommonQuery->reset();
     $this->SelectQuery->reset();
     $this->UpdateQuery->reset();
     $this->InsertQuery->reset();
     $this->DeleteQuery->reset();
 }
예제 #2
0
 /**
  * @return $this
  */
 public function reset()
 {
     $this->fields = NULL;
     parent::reset();
     return $this;
 }