예제 #1
0
파일: Table.php 프로젝트: wells5609/wp-app
 /**
  * Update a row in the table.
  * @see wpdb::update()
  */
 public function update(array $data, array $where)
 {
     return $this->connection->update($this, $data, $where);
 }