Exemple #1
0
 /**
  * @param string $pathTo
  * @return \Nov\CouchDb\Resulset
  */
 public function move($pathTo)
 {
     $this->_cdb->copy($this->_path, $pathTo);
     $this->_cdb->delete($this->_path);
     return $this->_cdb->select($pathTo);
 }