From 5efb010355447e51f32ab4966f1937727d7b34ab Mon Sep 17 00:00:00 2001 From: marcelschoolenberg Date: Wed, 27 Jun 2018 16:06:06 +0200 Subject: [PATCH] getData function already exists and change some text --- src/Result/Refund/Refund.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/Result/Refund/Refund.php b/src/Result/Refund/Refund.php index 1259908f..8901ecbb 100644 --- a/src/Result/Refund/Refund.php +++ b/src/Result/Refund/Refund.php @@ -22,23 +22,17 @@ use Paynl\Result\Result; /** - * Description of Transaction + * Description of Refund * * @author Andy Pieters */ class Refund extends Result { /** - * @return string The transaction id + * @return string The Refund id */ public function getId() { return $this->data['refundId']; } - - public function info() - { - return $this->data; - } - }