Skip to content

Commit

Permalink
refreshtime to refreshTime
Browse files Browse the repository at this point in the history
  • Loading branch information
FikretCin committed Dec 13, 2023
1 parent e9ab69c commit ab20175
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/DataMapper/EstPosRequestDataMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public function create3DFormDataCommon(AbstractPosAccount $account, $order, stri
'failUrl' => $order->fail_url,
// musteri 3D onay sayfasinda islemleri tamamlamadan kapatirsa, banka bu sayfaya bir istek gonderecek.
'callbackUrl' => $order->fail_url,
'refreshtime' => '10', //callbackUrl sisteminin doğru çalışması için eklenmesi gereken parametre
'refreshTime' => '10', //callbackUrl sisteminin doğru çalışması için eklenmesi gereken parametre
'rnd' => $order->rand,
'lang' => $this->getLang($account, $order),
'currency' => $this->mapCurrency($order->currency),
Expand Down
8 changes: 4 additions & 4 deletions tests/DataMapper/EstPosRequestDataMapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public function testGet3DFormData()
'okUrl' => $this->order['success_url'],
'failUrl' => $this->order['fail_url'],
'callbackUrl' => $this->order['fail_url'],
'refreshtime' => '10',
'refreshTime' => '10',
'rnd' => $this->order['rand'],
'lang' => 'tr',
'currency' => 949,
Expand Down Expand Up @@ -408,7 +408,7 @@ public function testGet3DHostFormData()
'okUrl' => $this->order['success_url'],
'failUrl' => $this->order['fail_url'],
'callbackUrl' => $this->order['fail_url'],
'refreshtime' => '10',
'refreshTime' => '10',
'rnd' => $this->order['rand'],
'lang' => 'tr',
'currency' => '949',
Expand Down Expand Up @@ -527,7 +527,7 @@ public static function threeDFormDataProvider(): iterable
'okUrl' => 'https://domain.com/success',
'failUrl' => 'https://domain.com/fail_url',
'callbackUrl' => 'https://domain.com/fail_url',
'refreshtime' => '10',
'refreshTime' => '10',
'rnd' => 'rand',
'lang' => 'tr',
'currency' => '949',
Expand Down Expand Up @@ -570,7 +570,7 @@ public static function threeDFormDataProvider(): iterable
'okUrl' => 'https://domain.com/success',
'failUrl' => 'https://domain.com/fail_url',
'callbackUrl' => 'https://domain.com/fail_url',
'refreshtime' => '10',
'refreshTime' => '10',
'rnd' => 'rand',
'lang' => 'tr',
'currency' => '949',
Expand Down
4 changes: 2 additions & 2 deletions tests/DataMapper/EstV3PosRequestDataMapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function testGet3DFormData()
'callbackUrl' => $this->order['fail_url'],
'rnd' => $this->order['rand'],
'hashAlgorithm' => 'ver3',
'refreshtime' => '10',
'refreshTime' => '10',
'lang' => 'tr',
'currency' => '949',
'TranType' => 'Auth',
Expand Down Expand Up @@ -168,7 +168,7 @@ public function testGet3DHostFormData()
'callbackUrl' => $this->order['fail_url'],
'rnd' => $this->order['rand'],
'hashAlgorithm' => 'ver3',
'refreshtime' => '10',
'refreshTime' => '10',
'lang' => 'tr',
'currency' => '949',
'TranType' => 'Auth',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ public static function threeDHostPaymentDataProvider(): array
'firmaadi' => 'John Doe',
'islemtipi' => 'Auth',
'campaignOptions' => '000001',
'refreshtime' => '300',
'refreshTime' => '300',
'lang' => 'tr',
'merchantID' => '700655000200',
'maskedCreditCard' => '4355 08** **** 4358',
Expand Down Expand Up @@ -822,7 +822,7 @@ public static function threeDHostPaymentDataProvider(): array
'firmaadi' => 'John Doe',
'islemtipi' => 'Auth',
'campaignOptions' => '000002',
'refreshtime' => '300',
'refreshTime' => '300',
'lang' => 'tr',
'merchantID' => '700655000200',
'maskedCreditCard' => '4355 08** **** 4358',
Expand Down

0 comments on commit ab20175

Please sign in to comment.