Skip to content

Commit 0bb72c3

Browse files
committed
run linter
1 parent 9a7d9d2 commit 0bb72c3

9 files changed

Lines changed: 25 additions & 9 deletions

File tree

src/Contexts/BluemContext.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616
abstract class BluemContext implements BluemContextInterface
1717
{
18-
public function __construct(public array $BICs = []) {}
18+
public function __construct(public array $BICs = [])
19+
{
20+
}
1921

2022
public function getBICs(): array
2123
{

src/Exceptions/InvalidBluemConfigurationException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@
1313

1414
use Exception;
1515

16-
class InvalidBluemConfigurationException extends Exception {}
16+
class InvalidBluemConfigurationException extends Exception
17+
{
18+
}

src/Exceptions/InvalidBluemRequestException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@
1313

1414
use Exception;
1515

16-
class InvalidBluemRequestException extends Exception {}
16+
class InvalidBluemRequestException extends Exception
17+
{
18+
}

src/Helpers/BIC.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ class BIC
1616
public function __construct(
1717
public string $issuerID,
1818
public string $issuerName
19-
) {}
19+
) {
20+
}
2021
}

src/Interfaces/WebhookInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@
1111

1212
namespace Bluem\BluemPHP\Interfaces;
1313

14-
interface WebhookInterface {}
14+
interface WebhookInterface
15+
{
16+
}

src/Requests/IdentityBluemRequest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ public function XmlString(): string
188188
* @deprecated Since iDeal 2.0, the status GUI via this entranceCode mutation is no longer available.
189189
* @return void
190190
*/
191-
public function enableStatusGUI() {}
191+
public function enableStatusGUI()
192+
{
193+
}
192194

193195
private function XmlWrapDebtorWalletForPaymentMethod(): string
194196
{

src/Responses/ErrorBluemResponse.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
*/
1919
class ErrorBluemResponse implements BluemResponseInterface
2020
{
21-
public function __construct(private readonly string $error) {}
21+
public function __construct(private readonly string $error)
22+
{
23+
}
2224

2325
public function Status(): bool
2426
{

src/Validators/WebhookSignatureValidation.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ class WebhookSignatureValidation extends WebhookValidator
2121

2222
public function __construct(
2323
private readonly string $env
24-
) {}
24+
) {
25+
}
2526

2627
/**
2728
* Validate webhook signature based on a key file

src/Validators/WebhookXmlValidation.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ class WebhookXmlValidation extends WebhookXMLValidator
2222
'EMandateInterface'
2323
];
2424

25-
public function __construct(private readonly string $senderID) {}
25+
public function __construct(private readonly string $senderID)
26+
{
27+
}
2628

2729
public function validate(SimpleXMLElement $data): self
2830
{

0 commit comments

Comments
 (0)