From be9d60d725da25698864e51021e9676da4cf039f Mon Sep 17 00:00:00 2001 From: PT Trijaya Digital Grup <43115304+trijayadigital@users.noreply.github.com> Date: Tue, 31 Aug 2021 14:32:19 +0700 Subject: [PATCH] Fix bug --- src/Transaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Transaction.php b/src/Transaction.php index 872d523..40cbbf6 100644 --- a/src/Transaction.php +++ b/src/Transaction.php @@ -22,7 +22,7 @@ class Transaction extends Base public function __construct($environment) { // default expiry: 24 hours. - $this->expiresAfter = $this->expiresAfter(1440); + $this->expiresAfter(1440); parent::__construct($environment); }