diff --git a/src/Gateway.php b/src/Gateway.php index 0708eaa..3574bc1 100644 --- a/src/Gateway.php +++ b/src/Gateway.php @@ -263,5 +263,13 @@ public function parseNotification(array $parameters = array()) $parameters['bt_signature'], $parameters['bt_payload'] ); + + /** + * @param array $parameters + * @return Message\FindRequest + */ + public function fetchTransaction(array $parameters = array()) + { + return $this->createRequest('\Omnipay\Braintree\Message\FindRequest', $parameters); } }