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; - } - }