diff --git a/src/Services/AbstractService.php b/src/Services/AbstractService.php index 9f37b45..8b23c33 100644 --- a/src/Services/AbstractService.php +++ b/src/Services/AbstractService.php @@ -59,6 +59,15 @@ public function __construct() */ abstract public function buildRequest(); + /** + * @return RequestInterface + */ + public function getRequest() + { + return $this->request; + } + + /** * @return $this */