From 01170fdd6ec718e33c784230c4f9e8cea21618f9 Mon Sep 17 00:00:00 2001 From: CodeLingoBot Date: Fri, 5 Apr 2019 20:25:53 +1300 Subject: [PATCH] Change PHP keywords to comply with PSR2 Signed-off-by: CodeLingoBot --- test/Ebanx/Command/Request/DirectTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Ebanx/Command/Request/DirectTest.php b/test/Ebanx/Command/Request/DirectTest.php index b6d3188..2427fac 100644 --- a/test/Ebanx/Command/Request/DirectTest.php +++ b/test/Ebanx/Command/Request/DirectTest.php @@ -201,7 +201,7 @@ public function testValidateEmail() public function testValidatePaymentTypeCode() { $this->setExpectedException('InvalidArgumentException', "The parameter 'payment.payment_type_code' was not supplied."); - $this->params['payment']['payment_type_code'] = NULL; // weird bug fix, undefined index payment_type_code + $this->params['payment']['payment_type_code'] = null; // weird bug fix, undefined index payment_type_code \Ebanx\Ebanx::doRequest($this->params); }