Example #1
0
 /**
  * return constructed element based on TLogId
  * @param $id ticket_log id of the entry that we want to load into our object.
  * @return constructed ticket_log object.
  */
 public static function constr_TLogId($id)
 {
     $instance = new self();
     $instance->setTLogId($id);
     return $instance;
 }