예제 #1
0
파일: Model.php 프로젝트: chougron/LOG210
 /**
  * Save a model in the DB
  * @return boolean
  */
 public function save()
 {
     Database::save(self::getCollectionName(), $this);
     return true;
 }