Skip to content

Commit 3e374c8

Browse files
committed
Update copyright year to 2026 and refactor code for consistency
- Changed copyright year from 2023 to 2026 in all relevant files. - Refactored constructor syntax in several classes to use single-line format. - Adjusted array formatting for consistency across various files. - Cleaned up unnecessary line breaks and improved readability in multiple classes.
1 parent 1744f00 commit 3e374c8

54 files changed

Lines changed: 636 additions & 632 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎src/Bluem.php‎

Lines changed: 435 additions & 435 deletions
Large diffs are not rendered by default.

‎src/Contexts/BluemContext.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.

‎src/Contexts/IBANCheckContext.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.

‎src/Contexts/IdentityContext.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.

‎src/Contexts/MandatesContext.php‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.
@@ -21,7 +21,7 @@ class MandatesContext extends BluemContext
2121

2222
public string $debtorWalletElementName = "INCASSOMACHTIGEN";
2323

24-
private array $_possibleMandateTypes = [ 'CORE', 'B2B' ];
24+
private array $_possibleMandateTypes = ['CORE', 'B2B'];
2525

2626
private array $paymentMethodDetails;
2727

‎src/Contexts/PaymentsContext.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.

‎src/Exceptions/InvalidBluemConfigurationException.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.

‎src/Exceptions/InvalidBluemRequestException.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.

‎src/Exceptions/InvalidContextException.php‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
/**
6-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
6+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
77
*
88
* This source file is subject to the license that is bundled
99
* with this source code in the file LICENSE.
@@ -15,7 +15,7 @@
1515

1616
class InvalidContextException extends Exception
1717
{
18-
public const AVAILABLE_CONTEXTS = [ "Mandates", "Payments", "Identity" ];
18+
public const AVAILABLE_CONTEXTS = ["Mandates", "Payments", "Identity"];
1919

2020
public function __construct()
2121
{

‎src/Extensions/IPAPI.php‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* (c) 2023 - Bluem Plugin Support <pluginsupport@bluem.nl>
4+
* © 2026 - Bluem Plugin Support <pluginsupport@bluem.nl>
55
*
66
* This source file is subject to the license that is bundled
77
* with this source code in the file LICENSE.
@@ -47,7 +47,7 @@ public function CheckIsNetherlands(string $ip = ""): bool
4747
return true;
4848
}
4949

50-
return ( $result['country_code'] === "NL" );
50+
return ($result['country_code'] === "NL");
5151
}
5252

5353
/**

0 commit comments

Comments
 (0)