コード例 #1
0
ファイル: BuildRequest.php プロジェクト: skht777/chatwork-php
 private function __construct($path)
 {
     $this->_path = $path;
     $this->_method = Method::GET();
     $this->_query = array();
     $this->_header = array();
     $this->_content = array();
 }
コード例 #2
0
ファイル: Base.php プロジェクト: skht777/chatwork-php
 protected function getRequest($path = '')
 {
     return $this->exec($path, Method::GET(), $this->request($path)->setQuery($this->paramWithReset()));
 }