@@ -72,6 +72,7 @@ public function wrapper(int $number, string $method, string|null $parameter, str
7272 * Data provider.
7373 *
7474 * @return array<int, array<int, string|int|null>>
75+ * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
7576 */
7677 public function dataProvider (): array
7778 {
@@ -122,24 +123,42 @@ public function dataProvider(): array
122123 [++$ number , 'getCountryName ' , Language::DE_DE , 'Europe/Berlin ' , CountryEurope::COUNTRY_NAME_DE [Language::DE_DE ]],
123124 [++$ number , 'getCountryCode ' , null , 'Europe/Bratislava ' , CountryEurope::COUNTRY_CODE_SK ],
124125 [++$ number , 'getCountryName ' , null , 'Europe/Bratislava ' , CountryEurope::COUNTRY_NAME_SK [Language::EN_GB ]],
126+ [++$ number , 'getCountryCode ' , null , 'Europe/Budapest ' , CountryEurope::COUNTRY_CODE_HU ],
127+ [++$ number , 'getCountryName ' , null , 'Europe/Budapest ' , CountryEurope::COUNTRY_NAME_HU [Language::EN_GB ]],
125128 [++$ number , 'getCountryCode ' , null , 'Europe/Brussels ' , CountryEurope::COUNTRY_CODE_BE ],
126129 [++$ number , 'getCountryName ' , null , 'Europe/Brussels ' , CountryEurope::COUNTRY_NAME_BE [Language::EN_GB ]],
127130 [++$ number , 'getCountryCode ' , null , 'Europe/Copenhagen ' , CountryEurope::COUNTRY_CODE_DK ],
128131 [++$ number , 'getCountryName ' , null , 'Europe/Copenhagen ' , CountryEurope::COUNTRY_NAME_DK [Language::EN_GB ]],
132+ [++$ number , 'getCountryCode ' , null , 'Europe/Ljubljana ' , CountryEurope::COUNTRY_CODE_SI ],
133+ [++$ number , 'getCountryName ' , null , 'Europe/Ljubljana ' , CountryEurope::COUNTRY_NAME_SI [Language::EN_GB ]],
134+ [++$ number , 'getCountryCode ' , null , 'Europe/London ' , CountryEurope::COUNTRY_CODE_GB ],
135+ [++$ number , 'getCountryName ' , null , 'Europe/London ' , CountryEurope::COUNTRY_NAME_GB [Language::EN_GB ]],
129136 [++$ number , 'getCountryCode ' , null , 'Europe/Luxembourg ' , CountryEurope::COUNTRY_CODE_LU ],
130137 [++$ number , 'getCountryName ' , null , 'Europe/Luxembourg ' , CountryEurope::COUNTRY_NAME_LU [Language::EN_GB ]],
131138 [++$ number , 'getCountryCode ' , null , 'Europe/Madrid ' , CountryEurope::COUNTRY_CODE_ES ],
132139 [++$ number , 'getCountryName ' , null , 'Europe/Madrid ' , CountryEurope::COUNTRY_NAME_ES [Language::EN_GB ]],
140+ [++$ number , 'getCountryCode ' , null , 'Europe/Monaco ' , CountryEurope::COUNTRY_CODE_MC ],
141+ [++$ number , 'getCountryName ' , null , 'Europe/Monaco ' , CountryEurope::COUNTRY_NAME_MC [Language::EN_GB ]],
133142 [++$ number , 'getCountryCode ' , null , 'Europe/Moscow ' , CountryAsia::COUNTRY_CODE_RU ],
134143 [++$ number , 'getCountryName ' , null , 'Europe/Moscow ' , CountryAsia::COUNTRY_NAME_RU [Language::EN_GB ]],
144+ [++$ number , 'getCountryCode ' , null , 'Europe/Oslo ' , CountryEurope::COUNTRY_CODE_NO ],
145+ [++$ number , 'getCountryName ' , null , 'Europe/Oslo ' , CountryEurope::COUNTRY_NAME_NO [Language::EN_GB ]],
135146 [++$ number , 'getCountryCode ' , null , 'Europe/Paris ' , CountryEurope::COUNTRY_CODE_FR ],
136147 [++$ number , 'getCountryName ' , null , 'Europe/Paris ' , CountryEurope::COUNTRY_NAME_FR [Language::EN_GB ]],
137148 [++$ number , 'getCountryCode ' , null , 'Europe/Prague ' , CountryEurope::COUNTRY_CODE_CZ ],
138149 [++$ number , 'getCountryName ' , null , 'Europe/Prague ' , CountryEurope::COUNTRY_NAME_CZ [Language::EN_GB ]],
139150 [++$ number , 'getCountryCode ' , null , 'Europe/Rome ' , CountryEurope::COUNTRY_CODE_IT ],
140151 [++$ number , 'getCountryName ' , null , 'Europe/Rome ' , CountryEurope::COUNTRY_NAME_IT [Language::EN_GB ]],
152+ [++$ number , 'getCountryCode ' , null , 'Europe/Stockholm ' , CountryEurope::COUNTRY_CODE_SE ],
153+ [++$ number , 'getCountryName ' , null , 'Europe/Stockholm ' , CountryEurope::COUNTRY_NAME_SE [Language::EN_GB ]],
154+ [++$ number , 'getCountryCode ' , null , 'Europe/Vaduz ' , CountryEurope::COUNTRY_CODE_LI ],
155+ [++$ number , 'getCountryName ' , null , 'Europe/Vaduz ' , CountryEurope::COUNTRY_NAME_LI [Language::EN_GB ]],
156+ [++$ number , 'getCountryCode ' , null , 'Europe/Vatican ' , CountryEurope::COUNTRY_CODE_VA ],
157+ [++$ number , 'getCountryName ' , null , 'Europe/Vatican ' , CountryEurope::COUNTRY_NAME_VA [Language::EN_GB ]],
141158 [++$ number , 'getCountryCode ' , null , 'Europe/Warsaw ' , CountryEurope::COUNTRY_CODE_PL ],
142159 [++$ number , 'getCountryName ' , null , 'Europe/Warsaw ' , CountryEurope::COUNTRY_NAME_PL [Language::EN_GB ]],
160+ [++$ number , 'getCountryCode ' , null , 'Europe/Zagreb ' , CountryEurope::COUNTRY_CODE_HR ],
161+ [++$ number , 'getCountryName ' , null , 'Europe/Zagreb ' , CountryEurope::COUNTRY_NAME_HR [Language::EN_GB ]],
143162 [++$ number , 'getCountryCode ' , null , 'Europe/Zurich ' , CountryEurope::COUNTRY_CODE_CH ],
144163 [++$ number , 'getCountryName ' , null , 'Europe/Zurich ' , CountryEurope::COUNTRY_NAME_CH [Language::EN_GB ]],
145164
0 commit comments