From 674bde1d0b41e91fcbf941cda3e0ecc85da550c9 Mon Sep 17 00:00:00 2001 From: leonardjke Date: Fri, 19 Nov 2021 12:39:48 +0300 Subject: [PATCH] Update tests --- tests/GatewayTest.php | 2 +- tests/Message/PurchaseRequestTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/GatewayTest.php b/tests/GatewayTest.php index e522f77..2506507 100644 --- a/tests/GatewayTest.php +++ b/tests/GatewayTest.php @@ -10,7 +10,7 @@ class GatewayTest extends GatewayTestCase { - public function setUp() + public function setUp(): void { parent::setUp(); $this->gateway = new Gateway($this->getHttpClient(), $this->getHttpRequest()); diff --git a/tests/Message/PurchaseRequestTest.php b/tests/Message/PurchaseRequestTest.php index 26618c2..994cffe 100644 --- a/tests/Message/PurchaseRequestTest.php +++ b/tests/Message/PurchaseRequestTest.php @@ -13,7 +13,7 @@ class PurchaseRequestTest extends TestCase */ private $request; - protected function setUp() + protected function setUp(): void { $this->request = new PurchaseRequest($this->getHttpClient(), $this->getHttpRequest()); $this->request->setSecret('secret-key');