Skip to content

Commit 7dca642

Browse files
committed
chore: linter
1 parent a8a70e2 commit 7dca642

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

src/Requests/EmandateBluemRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function __construct(BluemConfiguration $config, private $debtorReference
6767
$this->mandateID = $mandateID;
6868

6969
// https - unique return URL for customer
70-
$this->merchantReturnURL = $this->appendToUrl($this->merchantReturnURLBase, 'mandateID',$this->mandateID);
70+
$this->merchantReturnURL = $this->appendToUrl($this->merchantReturnURLBase, 'mandateID', $this->mandateID);
7171

7272
$this->sequenceType = $config->sequenceType ?? "RCUR";
7373
// reason for the mandate; configurable per client

src/Requests/IdentityBluemRequest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function __construct(
7272
if (empty($debtorReturnURL)) {
7373
$debtorReturnURL = $config->merchantReturnURLBase;
7474
}
75-
$this->debtorReturnURL = $this->appendToUrl($debtorReturnURL,"debtorReference",$this->debtorReference);
75+
$this->debtorReturnURL = $this->appendToUrl($debtorReturnURL, "debtorReference", $this->debtorReference);
7676

7777
// @todo: make this a configurable setting
7878
$this->minAge = $config->minAge ?? BLUEM_DEFAULT_MIN_AGE;
@@ -187,7 +187,9 @@ public function XmlString(): string
187187
* @deprecated Since iDeal 2.0, the status GUI via this entranceCode mutation is no longer available.
188188
* @return void
189189
*/
190-
public function enableStatusGUI() {}
190+
public function enableStatusGUI()
191+
{
192+
}
191193

192194
private function XmlWrapDebtorWalletForPaymentMethod(): string
193195
{

src/Requests/PaymentBluemRequest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function __construct(
107107
}
108108

109109
$this->debtorReturnURL = $this->appendToUrl($this->debtorReturnURL, 'entranceCode', $this->entranceCode);
110-
$this->debtorReturnURL = $this->appendToUrl($this->debtorReturnURL, 'transactionID',$this->transactionID);
110+
$this->debtorReturnURL = $this->appendToUrl($this->debtorReturnURL, 'transactionID', $this->transactionID);
111111

112112
// Note: different variable name in config
113113
// added entranceCode as well, useful. Defined in generic bluem request class.
@@ -174,7 +174,7 @@ public function XmlString(): string
174174
if (!empty($this->brandID)) {
175175
$extraOptions['brandID'] = $this->brandID;
176176
}
177-
177+
178178
return $this->XmlRequestInterfaceWrap(
179179
$this->xmlInterfaceName,
180180
'TransactionRequest',
@@ -286,7 +286,7 @@ public function setPaymentMethodToCarteBancaire(): self
286286
$this->setPaymentMethod($this->context::PAYMENT_METHOD_CARTE_BANCAIRE);
287287
return $this;
288288
}
289-
289+
290290
public function setPaymentMethodToBancontact(): self
291291
{
292292
$this->setPaymentMethod($this->context::PAYMENT_METHOD_BANCONTACT);

0 commit comments

Comments
 (0)