コード例 #1
0
ファイル: UrlEncodedData.php プロジェクト: weew/http
 /**
  * @return string
  */
 public function toString()
 {
     return $this->holder->getContent();
 }
コード例 #2
0
ファイル: JsonData.php プロジェクト: weew/http
 /**
  * @return array
  */
 public function getData()
 {
     $data = $this->getJsonEncoder()->decode($this->holder->getContent());
     return $data !== null ? $data : [];
 }