Skip to content

Commit 167cec6

Browse files
Merge branch '4.4'
* 4.4: (21 commits) [appveyor] exclude tty group [HttpFoundation] Add types to private/final/internal methods and constructors. Add types to private/final/internal methods and constructors. SCA: minor code tweaks Tweak output [FrameworkBundle] Added --sort option for TranslationUpdateCommand [HttpClient] fallbackto CURLMOPT_MAXCONNECTS when CURLMOPT_MAX_HOST_CONNECTIONS is not available [DI] generate preload.php file for PHP 7.4 in cache folder Allow version 2 of the contracts package. [Serializer] Allow multi-dimenstion object array in AbstractObjectNormalizer fixed typo [HttpKernel] Fix Apache mod_expires Session Cache-Control issue deprecated not passing dash symbol (-) to STDIN commands [VarDumper] display ellipsed FQCN for nested classes [VarDumper] Display fully qualified title [Mailer] Change the syntax for DSNs using failover or roundrobin Removed workaround introduced in 4.3 [Console] Added support for definition list [OptionsResolver] Display full nested options hierarchy in exceptions New welcome page ...
2 parents 3f11afc + 3d55ff9 commit 167cec6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/Util/LocaleScanner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class LocaleScanner
4040
*/
4141
public function scanLocales(string $sourceDir): array
4242
{
43-
$locales = glob($sourceDir.'/*.txt');
43+
$locales = glob($sourceDir.'/*.txt', GLOB_NOSORT);
4444

4545
// Remove file extension and sort
4646
array_walk($locales, function (&$locale) { $locale = basename($locale, '.txt'); });

0 commit comments

Comments
 (0)