From ebbced6a51d1d9efd38017b2f0900f8444c6138e Mon Sep 17 00:00:00 2001 From: PrinsFrank <25006490+PrinsFrank@users.noreply.github.com> Date: Tue, 7 Jan 2025 21:17:53 +0100 Subject: [PATCH] Indonesia has joined BRICS (#284) --- src/Country/Groups/BRICS.php | 1 + tests/Unit/Country/Groups/BRICSTest.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Country/Groups/BRICS.php b/src/Country/Groups/BRICS.php index 0c34585..315d789 100644 --- a/src/Country/Groups/BRICS.php +++ b/src/Country/Groups/BRICS.php @@ -23,6 +23,7 @@ public static function allAlpha2(): array { CountryAlpha2::Ethiopia, CountryAlpha2::Iran, CountryAlpha2::United_Arab_Emirates, + CountryAlpha2::Indonesia, ]; } } diff --git a/tests/Unit/Country/Groups/BRICSTest.php b/tests/Unit/Country/Groups/BRICSTest.php index 47cb818..cc28ffd 100644 --- a/tests/Unit/Country/Groups/BRICSTest.php +++ b/tests/Unit/Country/Groups/BRICSTest.php @@ -22,6 +22,7 @@ public function testAllAlpha2(): void { CountryAlpha2::Ethiopia, CountryAlpha2::Iran, CountryAlpha2::United_Arab_Emirates, + CountryAlpha2::Indonesia, ], BRICS::allAlpha2() );