Example #1
0
 /**
  * Initiliaze from array
  *
  * @param array $array Data
  *
  * @return \Gc\User\Model
  */
 public static function fromArray(array $array)
 {
     $userTable = new Model();
     $userTable->setData($array);
     $userTable->unsetData('password');
     $userTable->setOrigData();
     return $userTable;
 }