Skip to content

Commit fdc4c87

Browse files
Merge branch '6.4' into 7.2
* 6.4: - CS fixes
2 parents 9d14eef + c0938cd commit fdc4c87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/CountriesTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -780,10 +780,10 @@ class CountriesTest extends ResourceBundleTestCase
780780

781781
public function testAllGettersGenerateTheSameDataSetCount()
782782
{
783-
$alpha2Count = count(Countries::getCountryCodes());
784-
$alpha3Count = count(Countries::getAlpha3Codes());
785-
$numericCodesCount = count(Countries::getNumericCodes());
786-
$namesCount = count(Countries::getNames());
783+
$alpha2Count = \count(Countries::getCountryCodes());
784+
$alpha3Count = \count(Countries::getAlpha3Codes());
785+
$numericCodesCount = \count(Countries::getNumericCodes());
786+
$namesCount = \count(Countries::getNames());
787787

788788
// we base all on Name count since it is the first to be generated
789789
$this->assertEquals($namesCount, $alpha2Count, 'Alpha 2 count does not match');

0 commit comments

Comments
 (0)