Skip to content

Commit 1332425

Browse files
committed
style: fix cs
1 parent 6f913df commit 1332425

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

tests/Entities/AmountTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Tests\Entities;
44

55
use Dnetix\Redirection\Entities\Amount;
6-
use Dnetix\Redirection\Exceptions\PlacetoPayException;
76
use Tests\BaseTestCase;
87

98
class AmountTest extends BaseTestCase

tests/Messages/CollectRequestTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public function testItParsesCorrectlyACollectWithCredit()
4545
'noBuyerFill' => false,
4646
'provider' => 'PROVIDER',
4747
'metadata' => [
48-
"initiatorIndicator" => "AGENT"
49-
]
48+
'initiatorIndicator' => 'AGENT',
49+
],
5050
];
5151
$request = new CollectRequest($data);
5252

@@ -59,6 +59,5 @@ public function testItParsesCorrectlyACollectWithCredit()
5959
$this->assertEquals($data, $request->toArray());
6060
$this->assertEquals($data['metadata'], $request->metadata());
6161
$this->assertEquals($data['provider'], $request->provider());
62-
6362
}
6463
}

tests/Messages/RedirectRequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function testItParsesCorrectlyAPaymentRequest()
104104
'captureAddress' => true,
105105
'paymentMethod' => 'CR_VS,_ATH_',
106106
'metadata' => [
107-
"initiatorIndicator" => "AGENT"
107+
'initiatorIndicator' => 'AGENT',
108108
],
109109
];
110110
$request = new RedirectRequest($data);

0 commit comments

Comments
 (0)