diff --git a/src/Gateway.php b/src/Gateway.php index 5f4bc3f..85b5a6b 100644 --- a/src/Gateway.php +++ b/src/Gateway.php @@ -229,4 +229,13 @@ public function void(array $parameters = array()) { return $this->createRequest('\Omnipay\Braintree\Message\VoidRequest', $parameters); } + + /** + * @param array $parameters + * @return Message\FindRequest + */ + public function fetchTransaction(array $parameters = array()) + { + return $this->createRequest('\Omnipay\Braintree\Message\FindRequest', $parameters); + } }