From 7f18cc0b01b20774e8dc3d3baab6bc63af49e3f4 Mon Sep 17 00:00:00 2001 From: Craig Paul Date: Fri, 21 Oct 2016 11:14:34 -0600 Subject: [PATCH] Adds docblock to cards method --- src/Gateway.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Gateway.php b/src/Gateway.php index 905130b..5fbbc61 100644 --- a/src/Gateway.php +++ b/src/Gateway.php @@ -114,6 +114,11 @@ public function capture($transaction, string $order = null, $amount = null) return $this->process($transaction); } + /** + * Create a new Vault instance. + * + * @return \CraigPaul\Moneris\Vault + */ public function cards() { return new Vault($this->id, $this->token, $this->environment);