Skip to content

Commit

Permalink
Added accessors for last request and last response
Browse files Browse the repository at this point in the history
  • Loading branch information
jxr-koda committed Aug 17, 2023
1 parent e708c7d commit da9bc7d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Request/SoapClientRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,14 @@ public function getBody()
return $this->body;
}

public function getLastResponse() {
return $this->client()->__getLastResponse();
}

public function getLastRequest() {
return $this->client()->__getLastRequest();
}

public function functions(): array
{
return $this->client()->__getFunctions();
Expand Down

0 comments on commit da9bc7d

Please sign in to comment.