예제 #1
0
파일: Chill.php 프로젝트: keeto/chill
 /**
  * @param $host - (string) The CouchDB host server.
  */
 public function __construct($host)
 {
     parent::__construct();
     $this->host = rtrim($host, '/') . '/';
     self::$H = $this->host;
     $this->_handshake();
 }
예제 #2
0
파일: Document.php 프로젝트: keeto/chill
 protected function p_delete($uri, $opts = array(), $data = "")
 {
     parent::delete();
 }