Skip to content

Commit

Permalink
add v5
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouaini528 committed Nov 30, 2023
1 parent d9e4eb1 commit 4a24bd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/RequestV5.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ protected function send(){
if($this->type=='GET') $url.= '?'.http_build_query($this->data);
else $this->options['body']=json_encode($this->data);

echo $this->type.PHP_EOL;
echo $url.PHP_EOL;
print_r($this->options);
//echo $this->type.PHP_EOL;
//echo $url.PHP_EOL;
//print_r($this->options);
//die;

$response = $client->request($this->type, $url, $this->options);
Expand Down

0 comments on commit 4a24bd1

Please sign in to comment.