From 5709d5d5e1bc1b85dd667fb1e3f8885aef87b567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=C3=BCel=20van=20der=20Steege?= Date: Fri, 9 Aug 2024 16:29:52 +0200 Subject: [PATCH] Happy 2024. --- pronamic-money.php | 2 +- resources/currencies.php | 2 +- src/Currencies.php | 2 +- src/Currency.php | 2 +- src/Money.php | 2 +- src/Parser.php | 2 +- src/TaxedMoney.php | 2 +- tests/bootstrap.php | 2 +- tests/phpstan/bootstrap.php | 2 +- tests/src/CurrenciesTest.php | 2 +- tests/src/CurrencyTest.php | 2 +- tests/src/MoneyTest.php | 4 ++-- tests/src/ParserTest.php | 2 +- tests/src/TaxedMoneyTest.php | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pronamic-money.php b/pronamic-money.php index d785a28..4644494 100644 --- a/pronamic-money.php +++ b/pronamic-money.php @@ -19,7 +19,7 @@ * GitHub URI: https://github.com/pronamic/wp-money * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Pay */ diff --git a/resources/currencies.php b/resources/currencies.php index 4abc35a..4240890 100644 --- a/resources/currencies.php +++ b/resources/currencies.php @@ -3,7 +3,7 @@ * Currencies * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/src/Currencies.php b/src/Currencies.php index 05a4e47..64169b5 100644 --- a/src/Currencies.php +++ b/src/Currencies.php @@ -3,7 +3,7 @@ * Currencies * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/src/Currency.php b/src/Currency.php index f0e24d7..e342b23 100644 --- a/src/Currency.php +++ b/src/Currency.php @@ -3,7 +3,7 @@ * Currency * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/src/Money.php b/src/Money.php index edf1a2f..3dfb783 100644 --- a/src/Money.php +++ b/src/Money.php @@ -3,7 +3,7 @@ * Money * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/src/Parser.php b/src/Parser.php index 76e5206..81175e2 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -3,7 +3,7 @@ * Parser * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/src/TaxedMoney.php b/src/TaxedMoney.php index bcaae4d..3508500 100644 --- a/src/TaxedMoney.php +++ b/src/TaxedMoney.php @@ -3,7 +3,7 @@ * Taxed Money * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 8339850..755512a 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -3,7 +3,7 @@ * Bootstrap tests * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/tests/phpstan/bootstrap.php b/tests/phpstan/bootstrap.php index abaf869..a662fc0 100644 --- a/tests/phpstan/bootstrap.php +++ b/tests/phpstan/bootstrap.php @@ -3,7 +3,7 @@ * Definitions for PHPStan. * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Pay */ diff --git a/tests/src/CurrenciesTest.php b/tests/src/CurrenciesTest.php index 24a68fc..c20e003 100644 --- a/tests/src/CurrenciesTest.php +++ b/tests/src/CurrenciesTest.php @@ -3,7 +3,7 @@ * Currencies Test * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/tests/src/CurrencyTest.php b/tests/src/CurrencyTest.php index b7d98fd..2ad8d60 100644 --- a/tests/src/CurrencyTest.php +++ b/tests/src/CurrencyTest.php @@ -3,7 +3,7 @@ * Currency Test * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/tests/src/MoneyTest.php b/tests/src/MoneyTest.php index c267dd3..c849e04 100644 --- a/tests/src/MoneyTest.php +++ b/tests/src/MoneyTest.php @@ -3,7 +3,7 @@ * Money * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ @@ -359,7 +359,7 @@ public function test_negative() { $this->assertSame( '29.95', $money->number_format( null, '.', '' ) ); $this->assertSame( '-29.95', $negative->number_format( null, '.', '' ) ); - + $money = new Money( '-149.25', 'EUR' ); $negative = $money->negative(); diff --git a/tests/src/ParserTest.php b/tests/src/ParserTest.php index b981b5e..ef82233 100644 --- a/tests/src/ParserTest.php +++ b/tests/src/ParserTest.php @@ -3,7 +3,7 @@ * Parser * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */ diff --git a/tests/src/TaxedMoneyTest.php b/tests/src/TaxedMoneyTest.php index 1438d39..4a1dd45 100644 --- a/tests/src/TaxedMoneyTest.php +++ b/tests/src/TaxedMoneyTest.php @@ -3,7 +3,7 @@ * Taxed Money Test * * @author Pronamic - * @copyright 2005-2023 Pronamic + * @copyright 2005-2024 Pronamic * @license GPL-3.0-or-later * @package Pronamic\WordPress\Money */